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
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 `"##`
for example (play)
results in
while too few has a much nicer error:
This issue has been assigned to @rcoh via this comment.