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