]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/issue-3786.rs
Merge commit '35d9c6bf256968e1b40e0d554607928bdf9cebea' into sync_cg_clif-2022-02-23
[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 }