]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/ascii-only-character-escape.stderr
Rollup merge of #61423 - davidtwco:correct-symbol-mangling, r=eddyb
[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:4:14
3    |
4 LL |     let x = "\x80";
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:5:14
9    |
10 LL |     let y = "\xff";
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:6:14
15    |
16 LL |     let z = "\xe2";
17    |              ^^^^
18
19 error: aborting due to 3 previous errors
20