]> git.lizzy.rs Git - rust.git/blob - tests/target/issue-3786.rs
fix the error with long string in raw string (#3800)
[rust.git] / 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 }