]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/ascii-only-character-escape.stderr
Rollup merge of #59707 - GuillaumeGomez:GuillaumeGomez-patch-1, r=Centril
[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:16
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:16
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:16
15    |
16 LL |     let z = "\xe2";
17    |                ^^
18
19 error: aborting due to 3 previous errors
20