rust/tests/ui/parser/unicode-chars.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
602 B
Plaintext
Raw Normal View History

error: unknown start of token: \u{37e}
--> $DIR/unicode-chars.rs:2:14
2018-10-20 20:36:17 +00:00
|
LL | let y = 0;
| ^
|
2018-10-20 20:36:17 +00:00
help: Unicode character ';' (Greek Question Mark) looks like ';' (Semicolon), but it is not
|
LL | let y = 0;
| ~
2018-10-20 20:36:17 +00:00
error: unknown start of token: \u{a0}
--> $DIR/unicode-chars.rs:5:5
|
2023-01-14 19:02:14 +00:00
LL |     let x = 0;
| ^^^^
|
= note: character appears 3 more times
help: Unicode character ' ' (No-Break Space) looks like ' ' (Space), but it is not
|
2023-01-14 19:02:14 +00:00
LL | let x = 0;
| ++++
2023-01-14 18:34:06 +00:00
error: aborting due to 2 previous errors
2018-10-20 20:36:17 +00:00