about summary refs log tree commit diff
path: root/src/test/ui/parser/ascii-only-character-escape.stderr
blob: e09db780880a0637c848eb74202e7407d0f99c77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: this form of character escape may only be used with characters in the range [/x00-/x7f]
  --> $DIR/ascii-only-character-escape.rs:14:16
   |
LL |     let x = "/x80"; //~ ERROR may only be used
   |                ^^

error: this form of character escape may only be used with characters in the range [/x00-/x7f]
  --> $DIR/ascii-only-character-escape.rs:15:16
   |
LL |     let y = "/xff"; //~ ERROR may only be used
   |                ^^

error: this form of character escape may only be used with characters in the range [/x00-/x7f]
  --> $DIR/ascii-only-character-escape.rs:16:16
   |
LL |     let z = "/xe2"; //~ ERROR may only be used
   |                ^^

error: aborting due to 3 previous errors