]> git.lizzy.rs Git - rust.git/blob - src/test/ui/string-escapes.rs
Auto merge of #73583 - anp:location-eq, r=dtolnay
[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 }