aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/rust/string.rs
blob: 4d60663dd023078833f426f4ec02397ec8da2076 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
fn foo() {
    let a = "hello
world";

    let b = "hello\
        world";

    let c = r#"
        hello
        world
    "#;
}