]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/unicode-chars.stderr
Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc
[rust.git] / tests / ui / parser / unicode-chars.stderr
1 error: unknown start of token: \u{37e}
2   --> $DIR/unicode-chars.rs:2:14
3    |
4 LL |     let y = 0;
5    |              ^
6    |
7 help: Unicode character ';' (Greek Question Mark) looks like ';' (Semicolon), but it is not
8    |
9 LL |     let y = 0;
10    |              ~
11
12 error: unknown start of token: \u{a0}
13   --> $DIR/unicode-chars.rs:5:5
14    |
15 LL |         let x = 0;
16    |     ^^^^
17    |
18    = note: character appears 3 more times
19 help: Unicode character ' ' (No-Break Space) looks like ' ' (Space), but it is not
20    |
21 LL |         let x = 0;
22    |     ++++
23
24 error: unknown start of token: \u{2a75}
25   --> $DIR/unicode-chars.rs:9:15
26    |
27 LL |     let _ = 1 ⩵ 2;
28    |               ^
29    |
30 help: Unicode character '⩵' (Two Consecutive Equals Signs) looks like '==' (Double Equals Sign), but it is not
31    |
32 LL |     let _ = 1 == 2;
33    |               ~~
34
35 error: aborting due to 3 previous errors
36