summary refs log tree commit diff
path: root/src/test/ui/string-escapes.rs
blob: cee5e27786cae29a70fff8d8831adfa02b94180e (plain)
1
2
3
4
5
6
7
// run-pass

fn main() {
    let x = "\\\\\
    ";
    assert_eq!(x, r"\\"); // extraneous whitespace stripped
}