]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/rfc-2457-non-ascii-idents/lint-mixed-script-confusables.stderr
Rollup merge of #104965 - zacklukem:p-option-as_ref-docs, r=scottmcm
[rust.git] / tests / ui / lint / rfc-2457-non-ascii-idents / lint-mixed-script-confusables.stderr
1 error: the usage of Script Group `Greek` in this crate consists solely of mixed script confusables
2   --> $DIR/lint-mixed-script-confusables.rs:3:8
3    |
4 LL | struct ΑctuallyNotLatin;
5    |        ^^^^^^^^^^^^^^^^
6    |
7    = note: the usage includes 'Α' (U+0391)
8    = note: please recheck to make sure their usages are indeed what you want
9 note: the lint level is defined here
10   --> $DIR/lint-mixed-script-confusables.rs:1:9
11    |
12 LL | #![deny(mixed_script_confusables)]
13    |         ^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: the usage of Script Group `Cyrillic` in this crate consists solely of mixed script confusables
16   --> $DIR/lint-mixed-script-confusables.rs:10:5
17    |
18 LL | mod роре {
19    |     ^^^^
20    |
21    = note: the usage includes 'е' (U+0435), 'о' (U+043E), 'р' (U+0440)
22    = note: please recheck to make sure their usages are indeed what you want
23
24 error: the usage of Script Group `Japanese, Katakana` in this crate consists solely of mixed script confusables
25   --> $DIR/lint-mixed-script-confusables.rs:12:11
26    |
27 LL |     const エ: &'static str = "アイウ";
28    |           ^^
29    |
30    = note: the usage includes 'エ' (U+30A8)
31    = note: please recheck to make sure their usages are indeed what you want
32
33 error: aborting due to 3 previous errors
34