2021-07-01 11:17:38 -05:00
|
|
|
error: identifier `счётчик` has a Unicode script that is not allowed by configuration: Cyrillic
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/disallowed_script_idents.rs:11:9
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | let счётчик = 10;
|
2021-07-01 11:17:38 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/disallowed_script_idents.rs:1:9
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(clippy::disallowed_script_idents)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: identifier `カウンタ` has a Unicode script that is not allowed by configuration: Katakana
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/disallowed_script_idents.rs:14:9
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | let カウンタ = 10;
|
2021-07-01 11:17:38 -05:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|