mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
47 lines
1.1 KiB
Text
47 lines
1.1 KiB
Text
error: this ident is too short (3 <= 3)
|
|
--> $DIR/min_ident_chars.rs:6:19
|
|
|
|
|
LL | use extern_types::Aaa;
|
|
| ^^^
|
|
|
|
|
= note: `-D clippy::min-ident-chars` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::min_ident_chars)]`
|
|
|
|
error: this ident is too short (3 <= 3)
|
|
--> $DIR/min_ident_chars.rs:10:5
|
|
|
|
|
LL | aaa: Aaa,
|
|
| ^^^
|
|
|
|
error: this ident is too short (3 <= 3)
|
|
--> $DIR/min_ident_chars.rs:15:9
|
|
|
|
|
LL | let vvv = 1;
|
|
| ^^^
|
|
|
|
error: this ident is too short (3 <= 3)
|
|
--> $DIR/min_ident_chars.rs:16:9
|
|
|
|
|
LL | let uuu = 1;
|
|
| ^^^
|
|
|
|
error: this ident is too short (1 <= 3)
|
|
--> $DIR/min_ident_chars.rs:17:14
|
|
|
|
|
LL | let (mut a, mut b) = (1, 2);
|
|
| ^
|
|
|
|
error: this ident is too short (1 <= 3)
|
|
--> $DIR/min_ident_chars.rs:17:21
|
|
|
|
|
LL | let (mut a, mut b) = (1, 2);
|
|
| ^
|
|
|
|
error: this ident is too short (1 <= 3)
|
|
--> $DIR/min_ident_chars.rs:18:9
|
|
|
|
|
LL | for i in 0..1000 {}
|
|
| ^
|
|
|
|
error: aborting due to 7 previous errors
|
|
|