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

15 lines
433 B
Plaintext
Raw Normal View History

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