rust/src/test/ui/parser/new-unicode-escapes-1.stderr

14 lines
298 B
Plaintext
Raw Normal View History

error: unterminated unicode escape
--> $DIR/new-unicode-escapes-1.rs:2:14
2018-10-20 15:36:17 -05:00
|
LL | let s = "\u{2603";
| ^^^^^^^ missing a closing `}`
|
help: terminate the unicode escape
|
LL | let s = "\u{2603}";
| ^
2018-10-20 15:36:17 -05:00
error: aborting due to previous error