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
4 LL | let x = "/x80"; //~ ERROR may only be used
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
10 LL | let y = "/xff"; //~ ERROR may only be used
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
16 LL | let z = "/xe2"; //~ ERROR may only be used
19 error: aborting due to 3 previous errors