Skip to content

Merge pull request #15 from CGMossa/add_rust_msrv #16

Merge pull request #15 from CGMossa/add_rust_msrv

Merge pull request #15 from CGMossa/add_rust_msrv #16

GitHub Actions / clippy succeeded Dec 22, 2023 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 (3d0e6bed6 2023-12-21)
  • cargo 1.77.0-nightly (1a2666ddd 2023-12-17)
  • clippy 0.1.76 (3d0e6be 2023-12-21)

Annotations

Check warning on line 8 in tests/tests.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

use of `default` to create a unit struct

warning: use of `default` to create a unit struct
 --> tests/tests.rs:8:16
  |
8 |     assert!(Foo::default() == Foo);
  |                ^^^^^^^^^^^ help: remove this call to `default`
  |
  = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#default_constructed_unit_structs
  = note: `#[warn(clippy::default_constructed_unit_structs)]` on by default