rust-clippy/tests/ui/non_expressive_names.stderr

42 lines
1.1 KiB
Text
Raw Permalink Normal View History

2017-11-03 20:54:33 +00:00
error: consider choosing a more descriptive name
2024-02-17 12:16:29 +00:00
--> tests/ui/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`
= help: to override `-D warnings` add `#[allow(clippy::just_underscores_and_digits)]`
2017-11-03 20:54:33 +00:00
error: consider choosing a more descriptive name
2024-02-17 12:16:29 +00:00
--> tests/ui/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
2024-02-17 12:16:29 +00:00
--> tests/ui/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
2024-02-17 12:16:29 +00:00
--> tests/ui/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
2024-02-17 12:16:29 +00:00
--> tests/ui/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
2024-02-17 12:16:29 +00:00
--> tests/ui/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