blob: c0dc0743a28f7da8789df00c1c26e889c0422890 [file] [log] [blame] [edit]
//! regression test for <https://github.com/rust-lang/rust/issues/50471>
//@ check-pass
fn main() {
assert!({ false });
assert!(r"\u{41}" == "A");
assert!(r"\u{".is_empty());
}