]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/ascii-only-character-escape.stderr
New upstream version 1.31.0~beta.4+dfsg1
[rustc.git] / src / test / ui / parser / ascii-only-character-escape.stderr
1 error: this form of character escape may only be used with characters in the range [/x00-/x7f]
2 --> $DIR/ascii-only-character-escape.rs:14:16
3 |
4 LL | let x = "/x80"; //~ ERROR may only be used
5 | ^^
6
7 error: this form of character escape may only be used with characters in the range [/x00-/x7f]
8 --> $DIR/ascii-only-character-escape.rs:15:16
9 |
10 LL | let y = "/xff"; //~ ERROR may only be used
11 | ^^
12
13 error: this form of character escape may only be used with characters in the range [/x00-/x7f]
14 --> $DIR/ascii-only-character-escape.rs:16:16
15 |
16 LL | let z = "/xe2"; //~ ERROR may only be used
17 | ^^
18
19 error: aborting due to 3 previous errors
20