summary refs log tree commit diff
path: root/src/test/run-pass/string-escapes.rs
blob: 6013173f31349d1562e6ac038917323cb51bbc37 (plain)
1
2
3
4
5
fn main() {
    let x = "\\\\\
    ";
    assert_eq!(x, r"\\"); // extraneous whitespace stripped
}