blob: d133e46b4b0d2601a94b37d38d3bbb1a6c2dbf3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
error: unterminated unicode escape
--> $DIR/new-unicode-escapes-1.rs:2:14
|
LL | let s = "\u{2603";
| ^^^^^^^ missing a closing `}`
|
help: terminate the unicode escape
|
LL | let s = "\u{2603}";
| +
error: aborting due to previous error
|