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