Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/cache from 1 to 4 #140

Merged
merged 1 commit into from
Feb 10, 2024

Bump actions/cache from 1 to 4

bceea41
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Bump actions/cache from 1 to 4 #140

Bump actions/cache from 1 to 4
bceea41
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Feb 10, 2024 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.78.0-nightly (d44e3b95c 2024-02-09)
  • cargo 1.78.0-nightly (ccc84ccec 2024-02-07)
  • clippy 0.1.78 (d44e3b9 2024-02-09)

Annotations

Check warning on line 15 in tests/no_type_leakage.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `0` is never read

warning: field `0` is never read
  --> tests/no_type_leakage.rs:15:16
   |
15 | pub struct Bar(Foo);
   |            --- ^^^
   |            |
   |            field in this struct
   |
   = note: `#[warn(dead_code)]` on by default
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
   |
15 | pub struct Bar(());
   |                ~~