2024-02-27 08:25:18 -06:00
|
|
|
error: this ident is too short (1 <= 3)
|
|
|
|
--> tests/ui-toml/min_ident_chars/min_ident_chars.rs:6:41
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
2024-02-27 08:25:18 -06:00
|
|
|
LL | use extern_types::{Aaa, LONGER, M, N as W};
|
|
|
|
| ^
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::min-ident-chars` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::min_ident_chars)]`
|
2023-07-02 07:35:19 -05:00
|
|
|
|
2024-02-27 08:25:18 -06:00
|
|
|
error: this ident is too short (1 <= 3)
|
|
|
|
--> tests/ui-toml/min_ident_chars/min_ident_chars.rs:8:11
|
|
|
|
|
|
|
|
|
LL | pub const N: u32 = 0;
|
|
|
|
| ^
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
error: this ident is too short (3 <= 3)
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/min_ident_chars/min_ident_chars.rs:13:5
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
|
|
|
LL | aaa: Aaa,
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: this ident is too short (3 <= 3)
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/min_ident_chars/min_ident_chars.rs:18:9
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
|
|
|
LL | let vvv = 1;
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: this ident is too short (3 <= 3)
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/min_ident_chars/min_ident_chars.rs:19:9
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
|
|
|
LL | let uuu = 1;
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: this ident is too short (1 <= 3)
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/min_ident_chars/min_ident_chars.rs:20:14
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
|
|
|
LL | let (mut a, mut b) = (1, 2);
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this ident is too short (1 <= 3)
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/min_ident_chars/min_ident_chars.rs:20:21
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
|
|
|
LL | let (mut a, mut b) = (1, 2);
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this ident is too short (1 <= 3)
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/min_ident_chars/min_ident_chars.rs:21:9
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
|
|
|
LL | for i in 0..1000 {}
|
|
|
|
| ^
|
|
|
|
|
2024-02-27 08:25:18 -06:00
|
|
|
error: aborting due to 8 previous errors
|
2023-07-02 07:35:19 -05:00
|
|
|
|