]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-3786.rs
Merge commit 'd822110d3b5625b9dc80ccc442e06fc3cc851d76' into clippyup
[rust.git] / src / tools / rustfmt / tests / target / issue-3786.rs
1 fn main() {
2     let _ = r#"
3 this is a very long string exceeded maximum width in this case maximum 100. (current this line width is about 115)
4 "#;
5
6     let _with_newline = r#"
7 this is a very long string exceeded maximum width in this case maximum 100. (current this line width is about 115)
8 "#;
9 }