mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
171 lines
4.4 KiB
Text
171 lines
4.4 KiB
Text
error: binding's name is too similar to existing binding
|
|
--> $DIR/non_expressive_names.rs:15:9
|
|
|
|
|
LL | let bpple: i32;
|
|
| ^^^^^
|
|
|
|
|
= note: `-D clippy::similar-names` implied by `-D warnings`
|
|
note: existing binding defined here
|
|
--> $DIR/non_expressive_names.rs:13:9
|
|
|
|
|
LL | let apple: i32;
|
|
| ^^^^^
|
|
help: separate the discriminating character by an underscore like: `b_pple`
|
|
--> $DIR/non_expressive_names.rs:15:9
|
|
|
|
|
LL | let bpple: i32;
|
|
| ^^^^^
|
|
|
|
error: binding's name is too similar to existing binding
|
|
--> $DIR/non_expressive_names.rs:17:9
|
|
|
|
|
LL | let cpple: i32;
|
|
| ^^^^^
|
|
|
|
|
note: existing binding defined here
|
|
--> $DIR/non_expressive_names.rs:13:9
|
|
|
|
|
LL | let apple: i32;
|
|
| ^^^^^
|
|
help: separate the discriminating character by an underscore like: `c_pple`
|
|
--> $DIR/non_expressive_names.rs:17:9
|
|
|
|
|
LL | let cpple: i32;
|
|
| ^^^^^
|
|
|
|
error: binding's name is too similar to existing binding
|
|
--> $DIR/non_expressive_names.rs:41:9
|
|
|
|
|
LL | let bluby: i32;
|
|
| ^^^^^
|
|
|
|
|
note: existing binding defined here
|
|
--> $DIR/non_expressive_names.rs:40:9
|
|
|
|
|
LL | let blubx: i32;
|
|
| ^^^^^
|
|
help: separate the discriminating character by an underscore like: `blub_y`
|
|
--> $DIR/non_expressive_names.rs:41:9
|
|
|
|
|
LL | let bluby: i32;
|
|
| ^^^^^
|
|
|
|
error: binding's name is too similar to existing binding
|
|
--> $DIR/non_expressive_names.rs:45:9
|
|
|
|
|
LL | let coke: i32;
|
|
| ^^^^
|
|
|
|
|
note: existing binding defined here
|
|
--> $DIR/non_expressive_names.rs:43:9
|
|
|
|
|
LL | let cake: i32;
|
|
| ^^^^
|
|
|
|
error: binding's name is too similar to existing binding
|
|
--> $DIR/non_expressive_names.rs:63:9
|
|
|
|
|
LL | let xyzeabc: i32;
|
|
| ^^^^^^^
|
|
|
|
|
note: existing binding defined here
|
|
--> $DIR/non_expressive_names.rs:61:9
|
|
|
|
|
LL | let xyz1abc: i32;
|
|
| ^^^^^^^
|
|
|
|
error: binding's name is too similar to existing binding
|
|
--> $DIR/non_expressive_names.rs:67:9
|
|
|
|
|
LL | let parsee: i32;
|
|
| ^^^^^^
|
|
|
|
|
note: existing binding defined here
|
|
--> $DIR/non_expressive_names.rs:65:9
|
|
|
|
|
LL | let parser: i32;
|
|
| ^^^^^^
|
|
help: separate the discriminating character by an underscore like: `parse_e`
|
|
--> $DIR/non_expressive_names.rs:67:9
|
|
|
|
|
LL | let parsee: i32;
|
|
| ^^^^^^
|
|
|
|
error: binding's name is too similar to existing binding
|
|
--> $DIR/non_expressive_names.rs:81:16
|
|
|
|
|
LL | bpple: sprang,
|
|
| ^^^^^^
|
|
|
|
|
note: existing binding defined here
|
|
--> $DIR/non_expressive_names.rs:80:16
|
|
|
|
|
LL | apple: spring,
|
|
| ^^^^^^
|
|
|
|
error: 5th binding whose name is just one char
|
|
--> $DIR/non_expressive_names.rs:116:17
|
|
|
|
|
LL | let e: i32;
|
|
| ^
|
|
|
|
|
= note: `-D clippy::many-single-char-names` implied by `-D warnings`
|
|
|
|
error: 5th binding whose name is just one char
|
|
--> $DIR/non_expressive_names.rs:119:17
|
|
|
|
|
LL | let e: i32;
|
|
| ^
|
|
|
|
error: 6th binding whose name is just one char
|
|
--> $DIR/non_expressive_names.rs:120:17
|
|
|
|
|
LL | let f: i32;
|
|
| ^
|
|
|
|
error: 5th binding whose name is just one char
|
|
--> $DIR/non_expressive_names.rs:124:13
|
|
|
|
|
LL | e => panic!(),
|
|
| ^
|
|
|
|
error: consider choosing a more descriptive name
|
|
--> $DIR/non_expressive_names.rs:134:9
|
|
|
|
|
LL | let _1 = 1; //~ERROR Consider a more descriptive name
|
|
| ^^
|
|
|
|
|
= note: `-D clippy::just-underscores-and-digits` implied by `-D warnings`
|
|
|
|
error: consider choosing a more descriptive name
|
|
--> $DIR/non_expressive_names.rs:135:9
|
|
|
|
|
LL | let ____1 = 1; //~ERROR Consider a more descriptive name
|
|
| ^^^^^
|
|
|
|
error: consider choosing a more descriptive name
|
|
--> $DIR/non_expressive_names.rs:136:9
|
|
|
|
|
LL | let __1___2 = 12; //~ERROR Consider a more descriptive name
|
|
| ^^^^^^^
|
|
|
|
error: consider choosing a more descriptive name
|
|
--> $DIR/non_expressive_names.rs:156:13
|
|
|
|
|
LL | let _1 = 1;
|
|
| ^^
|
|
|
|
error: consider choosing a more descriptive name
|
|
--> $DIR/non_expressive_names.rs:157:13
|
|
|
|
|
LL | let ____1 = 1;
|
|
| ^^^^^
|
|
|
|
error: consider choosing a more descriptive name
|
|
--> $DIR/non_expressive_names.rs:158:13
|
|
|
|
|
LL | let __1___2 = 12;
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to 17 previous errors
|
|
|