27 lines
706 B
Plaintext
27 lines
706 B
Plaintext
error: identifier pair considered confusable between `s` and `s`
|
||
--> $DIR/lint-confusable-idents.rs:8:9
|
||
|
|
||
LL | const s: usize = 42;
|
||
| -- this is where the previous identifier occurred
|
||
...
|
||
LL | let s = "rust";
|
||
| ^
|
||
|
|
||
note: the lint level is defined here
|
||
--> $DIR/lint-confusable-idents.rs:1:9
|
||
|
|
||
LL | #![deny(confusable_idents)]
|
||
| ^^^^^^^^^^^^^^^^^
|
||
|
||
error: identifier pair considered confusable between `s_s` and `s_s`
|
||
--> $DIR/lint-confusable-idents.rs:9:9
|
||
|
|
||
LL | const s_s: usize = 42;
|
||
| --- this is where the previous identifier occurred
|
||
...
|
||
LL | let s_s = "rust2";
|
||
| ^^^^^
|
||
|
||
error: aborting due to 2 previous errors
|
||
|