rust/src/test/ui/parser/raw/raw_string.stderr

14 lines
425 B
Plaintext
Raw Normal View History

2020-02-18 07:50:48 -06:00
error[E0748]: unterminated raw string
--> $DIR/raw_string.rs:2:13
|
LL | let x = r##"lol"#;
| ^ - help: you might have intended to terminate the string here: `##`
| |
| unterminated raw string
|
= note: this raw string should be terminated with `"##`
2018-03-15 10:13:47 -05:00
error: aborting due to previous error
2020-02-18 07:50:48 -06:00
For more information about this error, try `rustc --explain E0748`.