blob: 54f8211ed4f8b1b23c912904c1099324e95fc700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
fn main() {
let _ =
r#"
this is a very long string exceeded maximum width in this case maximum 100. (current this line width is about 115)
"#;
let _with_newline =
r#"
this is a very long string exceeded maximum width in this case maximum 100. (current this line width is about 115)
"#;
}
|