aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/multiline-string.rs
blob: fcd6fa812ed20d2bf7f8cb39ba3f89a48aff1e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    let _a = "gcc
    
    rs";

    let _b = "rust
    
    c
    gcc
    
    
    
    rs";
}