mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
572 B
Rust
13 lines
572 B
Rust
fn main() {
|
||
let y = 0;
|
||
//~^ ERROR unknown start of token: \u{37e}
|
||
//~^^ HELP Unicode character ';' (Greek Question Mark) looks like ';' (Semicolon), but it is not
|
||
let x = 0;
|
||
//~^ ERROR unknown start of token: \u{a0}
|
||
//~^^ NOTE character appears 3 more times
|
||
//~^^^ HELP Unicode character ' ' (No-Break Space) looks like ' ' (Space), but it is not
|
||
let _ = 1 ⩵ 2;
|
||
//~^ ERROR unknown start of token
|
||
//~^^ HELP Unicode character '⩵' (Two Consecutive Equals Signs) looks like '==' (Double Equals Sign), but it is not
|
||
}
|