2017-11-03 20:54:33 +00:00
|
|
|
error: consider choosing a more descriptive name
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $DIR/non_expressive_names.rs:28:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +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 01:01:41 +00:00
|
|
|
|
2017-11-03 20:54:33 +00:00
|
|
|
error: consider choosing a more descriptive name
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $DIR/non_expressive_names.rs:29:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | let ____1 = 1;
|
2018-12-27 15:57:55 +00:00
|
|
|
| ^^^^^
|
2017-11-03 01:01:41 +00:00
|
|
|
|
2017-11-03 20:54:33 +00:00
|
|
|
error: consider choosing a more descriptive name
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $DIR/non_expressive_names.rs:30:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | let __1___2 = 12;
|
2018-12-27 15:57:55 +00:00
|
|
|
| ^^^^^^^
|
2017-11-03 01:01:41 +00:00
|
|
|
|
2018-02-02 06:49:47 +00:00
|
|
|
error: consider choosing a more descriptive name
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $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
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $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
|
2021-07-21 03:23:22 +00:00
|
|
|
--> $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
|
|
|
|
2019-05-12 11:01:43 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|