Skip to content

Commit

Permalink
Ignore confusable_idents warning in test
Browse files Browse the repository at this point in the history
    error: found both `σ` and `o` as identifiers, which look alike
       --> test_suite/tests/test_gen.rs:734:13
        |
    292 |         σ: f64,
        |         - other identifier used here
    ...
    734 |             o: T,
        |             ^ this identifier can be confused with `σ`
        |
    note: the lint level is defined here
       --> test_suite/tests/test_gen.rs:5:9
        |
    5   | #![deny(warnings)]
        |         ^^^^^^^^
        = note: `#[deny(confusable_idents)]` implied by `#[deny(warnings)]`
  • Loading branch information
dtolnay committed Aug 8, 2024
1 parent c3df337 commit d64a97b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test_suite/tests/test_gen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#![deny(warnings)]
#![allow(
confusable_idents,
unknown_lints,
mixed_script_confusables,
clippy::derive_partial_eq_without_eq,
Expand Down

0 comments on commit d64a97b

Please sign in to comment.