rust-clippy/tests/ui/non_expressive_names.stderr

41 lines
977 B
Text
Raw Normal View History

2017-11-03 20:54:33 +00:00
error: consider choosing a more descriptive name
--> $DIR/non_expressive_names.rs:28:9
2018-12-27 15:57:55 +00:00
|
LL | let _1 = 1;
2018-12-27 15:57:55 +00:00
| ^^
|
= note: `-D clippy::just-underscores-and-digits` implied by `-D warnings`
2017-11-03 20:54:33 +00:00
error: consider choosing a more descriptive name
--> $DIR/non_expressive_names.rs:29:9
2018-12-27 15:57:55 +00:00
|
LL | let ____1 = 1;
2018-12-27 15:57:55 +00:00
| ^^^^^
2017-11-03 20:54:33 +00:00
error: consider choosing a more descriptive name
--> $DIR/non_expressive_names.rs:30:9
2018-12-27 15:57:55 +00:00
|
LL | let __1___2 = 12;
2018-12-27 15:57:55 +00:00
| ^^^^^^^
2018-02-02 06:49:47 +00:00
error: consider choosing a more descriptive name
--> $DIR/non_expressive_names.rs:51:13
2018-12-27 15:57:55 +00:00
|
LL | let _1 = 1;
| ^^
2018-02-02 06:49:47 +00:00
error: consider choosing a more descriptive name
--> $DIR/non_expressive_names.rs:52:13
2018-12-27 15:57:55 +00:00
|
LL | let ____1 = 1;
| ^^^^^
2018-02-02 06:49:47 +00:00
error: consider choosing a more descriptive name
--> $DIR/non_expressive_names.rs:53:13
2018-12-27 15:57:55 +00:00
|
LL | let __1___2 = 12;
| ^^^^^^^
2018-02-02 06:49:47 +00:00
error: aborting due to 6 previous errors
2018-01-16 16:06:27 +00:00