mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
181 B
Rust
10 lines
181 B
Rust
// run-pass
|
|
|
|
fn main() {
|
|
let mut escaped = String::from("");
|
|
for c in '\u{10401}'.escape_unicode() {
|
|
escaped.push(c);
|
|
}
|
|
assert_eq!("\\u{10401}", escaped);
|
|
}
|