| error[E0748]: unterminated raw string | |
| --> $DIR/raw-byte-string-eof.rs:2:5 | |
| | | |
| LL | br##"a"#; | |
| | ^ unterminated raw string | |
| | | |
| = note: this raw string should be terminated with `"##` | |
| help: consider terminating the string here | |
| | | |
| LL | br##"a"##; | |
| | + | |
| error: aborting due to 1 previous error | |
| For more information about this error, try `rustc --explain E0748`. |