rust/src/test/ui/parser/raw-byte-string-literals.stderr

15 lines
435 B
Plaintext
Raw Normal View History

2018-10-20 15:36:17 -05:00
error: raw byte string must be ASCII: /u{e9}
--> $DIR/raw-byte-string-literals.rs:15:8
|
LL | br"é"; //~ ERROR raw byte string must be ASCII
| ^
error: found invalid character; only `#` is allowed in raw string delimitation: ~
--> $DIR/raw-byte-string-literals.rs:16:6
|
LL | br##~"a"~##; //~ ERROR only `#` is allowed in raw string delimitation
| ^^^
error: aborting due to 2 previous errors