]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-3786.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[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 }