]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-3786.rs
Merge commit 'e8dca3e87d164d2806098c462c6ce41301341f68' into sync_from_cg_gcc
[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 }