]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/ascii-only-character-escape.stderr
Auto merge of #55236 - petrochenkov:pfail, r=davidtwco
[rust.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