rust/tests/run-pass/option_eq.rs

4 lines
74 B
Rust

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