summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-3786.rs
blob: d90cba15d2019051f8e3a875bede0d877f1f61be (plain)
1
2
3
4
5
6
7
8
9
fn main() {
    let _ = r#"
this is a very long string exceeded maximum width in this case maximum 100. (current this line width is about 115)
"#;

    let _with_newline = r#"
this is a very long string exceeded maximum width in this case maximum 100. (current this line width is about 115)
"#;
}