2021-06-30 16:06:33 +00:00
|
|
|
error: identifier `счётчик` has a Unicode script that is not allowed by configuration: Cyrillic
|
2023-07-28 18:40:44 +00:00
|
|
|
--> $DIR/disallowed_script_idents.rs:11:9
|
2021-06-30 16:06:33 +00:00
|
|
|
|
|
2023-07-28 18:40:44 +00:00
|
|
|
LL | let счётчик = 10;
|
2021-06-30 16:06:33 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/disallowed_script_idents.rs:1:9
|
|
|
|
|
|
|
|
|
LL | #![deny(clippy::disallowed_script_idents)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: identifier `カウンタ` has a Unicode script that is not allowed by configuration: Katakana
|
2023-07-28 19:35:48 +00:00
|
|
|
--> $DIR/disallowed_script_idents.rs:14:9
|
2021-06-30 16:06:33 +00:00
|
|
|
|
|
2023-07-28 18:40:44 +00:00
|
|
|
LL | let カウンタ = 10;
|
2021-06-30 16:06:33 +00:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|