Closed
Description
for example (play)
let foo = r##"bar"###;
results in
error: expected one of `.`, `;`, `?`, or an operator, found `#`
--> src/main.rs:2:25
|
2 | let foo = r##"bar"###;
| ^ expected one of `.`, `;`, `?`, or an operator here
while too few has a much nicer error:
error: unterminated raw string
--> src/main.rs:3:15
|
3 | let baz = r##"quxx"#;
| ^ unterminated raw string
|
= note: this raw string should be terminated with `"##`
This issue has been assigned to @rcoh via this comment.