]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/raw-byte-string-literals.rs
Rollup merge of #57106 - matthiaskrgr:trim_must_use, r=sfackler
[rust.git] / src / test / ui / parser / raw-byte-string-literals.rs
1 // compile-flags: -Z continue-parse-after-error
2
3
4 pub fn main() {
5     br"é";  //~ ERROR raw byte string must be ASCII
6     br##~"a"~##;  //~ ERROR only `#` is allowed in raw string delimitation
7 }