2019-03-12 23:47:36 -05:00
|
|
|
|
error: unknown start of token: \u{37e}
|
2019-01-06 09:33:05 -06:00
|
|
|
|
--> $DIR/unicode-chars.rs:2:14
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
|
|
|
LL | let y = 0;
|
|
|
|
|
| ^
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
|
2018-10-20 15:36:17 -05:00
|
|
|
|
help: Unicode character ';' (Greek Question Mark) looks like ';' (Semicolon), but it is not
|
|
|
|
|
|
|
|
|
|
|
LL | let y = 0;
|
2021-06-21 21:07:19 -05:00
|
|
|
|
| ~
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2023-01-07 10:33:05 -06:00
|
|
|
|
error: unknown start of token: \u{a0}
|
|
|
|
|
--> $DIR/unicode-chars.rs:5:5
|
|
|
|
|
|
|
2023-01-14 13:02:14 -06:00
|
|
|
|
LL | let x = 0;
|
2023-01-07 10:33:05 -06:00
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
|
|
= note: character appears 3 more times
|
|
|
|
|
help: Unicode character ' ' (No-Break Space) looks like ' ' (Space), but it is not
|
|
|
|
|
|
|
2023-01-14 13:02:14 -06:00
|
|
|
|
LL | let x = 0;
|
2023-01-07 10:33:05 -06:00
|
|
|
|
| ++++
|
|
|
|
|
|
2023-01-18 20:25:24 -06:00
|
|
|
|
error: unknown start of token: \u{2a75}
|
|
|
|
|
--> $DIR/unicode-chars.rs:9:15
|
|
|
|
|
|
|
|
|
|
|
LL | let _ = 1 ⩵ 2;
|
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
|
|
help: Unicode character '⩵' (Two Consecutive Equals Signs) looks like '==' (Double Equals Sign), but it is not
|
|
|
|
|
|
|
|
|
|
|
LL | let _ = 1 == 2;
|
|
|
|
|
| ~~
|
|
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|