rust/tests/pass/option_eq.rs
2022-06-01 10:53:38 -04:00

4 lines
74 B
Rust

fn main() {
assert_eq!(std::char::from_u32('x' as u32), Some('x'));
}