Sign in
android
/
toolchain
/
rustc
/
bcf972c0208490b0eb3ce3c170c2db486ba945b3
/
.
/
src
/
test
/
ui
/
str
/
str-escape.rs
blob: 0264632fd24a15c8b2c3dfce961336da8e7491f7 [
file
] [
log
] [
blame
]
// check-pass
fn
main
()
{
let
s
=
"
\
";
//~^^^ WARNING multiple lines skipped by escaped newline
let
s
=
"
foo\
bar
";
//~^^^ WARNING non-ASCII whitespace symbol '\u{a0}' is not skipped
}