summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/disallowed_script_idents.stderr
blob: bf5cbe306c681a04a81ac52e0b0bb753d6bcf618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: identifier `счётчик` has a Unicode script that is not allowed by configuration: Cyrillic
  --> $DIR/disallowed_script_idents.rs:11:9
   |
LL |     let счётчик = 10;
   |         ^^^^^^^
   |
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
  --> $DIR/disallowed_script_idents.rs:14:9
   |
LL |     let カウンタ = 10;
   |         ^^^^^^^^

error: aborting due to 2 previous errors