summary refs log tree commit diff
path: root/src/test/ui/parser/raw-byte-string-literals.stderr
blob: a7f1af0a3474cf9988fc1e96c3e570cb514b51ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: raw byte string must be ASCII: \u{e9}
  --> $DIR/raw-byte-string-literals.rs:5:8
   |
LL |     br"é";
   |        ^

error: found invalid character; only `#` is allowed in raw string delimitation: ~
  --> $DIR/raw-byte-string-literals.rs:6:6
   |
LL |     br##~"a"~##;
   |      ^^^

error: aborting due to 2 previous errors