rust/src/test/ui/issue-44078.stderr
est31 5a71e12351 Fix a byte/char confusion issue in the error emitter
Fixes #44078. Fixes #44023.

The start_col member is given in chars,
while the code previously assumed it was given in bytes.

The more basic issue #44080 doesn't get fixed.
2017-08-25 21:46:54 +02:00

11 lines
171 B
Plaintext

error: unterminated double quote string
--> $DIR/issue-44078.rs:12:8
|
12 | "😊"";
| ________^
13 | | }
| |__^
error: aborting due to previous error