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