mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
298 B
Text
13 lines
298 B
Text
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
|
|
|