]> git.proxmox.com Git - rustc.git/blob - src/test/run-pass/str-multiline.rs
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / run-pass / str-multiline.rs
1 pub fn main() {
2 let a: String = "this \
3 is a test".to_string();
4 let b: String =
5 "this \
6 is \
7 another \
8 test".to_string();
9 assert_eq!(a, "this is a test".to_string());
10 assert_eq!(b, "this is another test".to_string());
11 }