]> git.lizzy.rs Git - rust.git/blob - tests/ui/str/str-escape.rs
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[rust.git] / tests / ui / str / str-escape.rs
1 // check-pass
2 fn main() {
3     let s = "\
4
5              ";
6     //~^^^ WARNING multiple lines skipped by escaped newline
7     let s = "foo\
8              bar
9              ";
10     //~^^^ WARNING non-ASCII whitespace symbol '\u{a0}' is not skipped
11 }