rust/tests/ui/parser/raw/raw-byte-string-eof.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
385 B
Plaintext
Raw Normal View History

2020-02-18 13:50:48 +00:00
error[E0748]: unterminated raw string
--> $DIR/raw-byte-string-eof.rs:2:5
2018-10-20 20:36:17 +00:00
|
2019-03-09 12:03:44 +00:00
LL | br##"a"#;
| ^ - help: consider terminating the string here: `##`
| |
| unterminated raw string
2018-10-20 20:36:17 +00:00
|
= note: this raw string should be terminated with `"##`
error: aborting due to 1 previous error
2018-10-20 20:36:17 +00:00
2020-02-18 13:50:48 +00:00
For more information about this error, try `rustc --explain E0748`.