2021-01-23 14:48:31 -06:00
|
|
|
error: unterminated unicode escape
|
2019-04-25 03:48:25 -05:00
|
|
|
--> $DIR/new-unicode-escapes-1.rs:2:14
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-12 23:47:36 -05:00
|
|
|
LL | let s = "\u{2603";
|
2021-01-23 14:48:31 -06:00
|
|
|
| ^^^^^^^ missing a closing `}`
|
|
|
|
|
|
|
|
|
help: terminate the unicode escape
|
|
|
|
|
|
|
|
|
LL | let s = "\u{2603}";
|
2021-06-21 21:07:19 -05:00
|
|
|
| +
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|