]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-3786.rs
Rollup merge of #95040 - frank-king:fix/94981, r=Mark-Simulacrum
[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 }