mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
10 lines
116 B
Rust
10 lines
116 B
Rust
// check-pass
|
|
|
|
fn main() {
|
|
assert!({false});
|
|
|
|
assert!(r"\u{41}" == "A");
|
|
|
|
assert!(r"\u{".is_empty());
|
|
}
|