Skip to content

Lint

Lint #34

GitHub Actions / clippy succeeded Jan 5, 2025 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.83.0 (90b35a623 2024-11-26)
  • cargo 1.83.0 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (90b35a6 2024-11-26)

Annotations

Check warning on line 64 in src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

binding's name is too similar to existing binding

warning: binding's name is too similar to existing binding
  --> src/main.rs:64:17
   |
64 |         let mut saw_pbo = false;
   |                 ^^^^^^^
   |
note: existing binding defined here
  --> src/main.rs:63:17
   |
63 |         let mut saw_ebo = false;
   |                 ^^^^^^^
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#similar_names
   = note: `-W clippy::similar-names` implied by `-W clippy::pedantic`
   = help: to override `-W clippy::pedantic` add `#[allow(clippy::similar_names)]`