Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
ui
/
parser
/
raw-byte-string-literals.rs
blob: 2800e4090cf7938d8569b66cce7c633372a306dd [
file
]
// compile-flags: -Z continue-parse-after-error
pub
fn
main
()
{
br
"é"
;
//~ ERROR raw byte string must be ASCII
br
##~
"a"
~##;
//~ ERROR only `#` is allowed in raw string delimitation
}