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
}