]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/disallowed_script_idents.stderr
Auto merge of #102717 - beetrees:repr128-c-style-debuginfo, r=nagisa
[rust.git] / src / tools / clippy / tests / ui / disallowed_script_idents.stderr
1 error: identifier `счётчик` has a Unicode script that is not allowed by configuration: Cyrillic
2   --> $DIR/disallowed_script_idents.rs:8:9
3    |
4 LL |     let счётчик = 10; // Cyrillic is not allowed by default.
5    |         ^^^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/disallowed_script_idents.rs:1:9
9    |
10 LL | #![deny(clippy::disallowed_script_idents)]
11    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: identifier `カウンタ` has a Unicode script that is not allowed by configuration: Katakana
14   --> $DIR/disallowed_script_idents.rs:9:9
15    |
16 LL |     let カウンタ = 10; // Same for japanese.
17    |         ^^^^^^^^
18
19 error: aborting due to 2 previous errors
20