Skip to content

Bump bugfix version #206

Bump bugfix version

Bump bugfix version #206

GitHub Actions / clippy succeeded Jan 16, 2024 in 1s

clippy

1 warning

Details

Results

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

Versions

  • rustc 1.77.0-nightly (714b29a17 2024-01-15)
  • cargo 1.77.0-nightly (84976cd69 2024-01-12)
  • clippy 0.1.77 (714b29a 2024-01-15)

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(());
   |                ~~