]> git.lizzy.rs Git - rust.git/blob - src/test/ui/string-escapes.rs
Rollup merge of #71829 - kper:issue71136, r=matthewjasper
[rust.git] / src / test / ui / string-escapes.rs
1 // run-pass
2
3 fn main() {
4     let x = "\\\\\
5     ";
6     assert_eq!(x, r"\\"); // extraneous whitespace stripped
7 }