rust/tests/run-pass/option_eq.rs

4 lines
74 B
Rust
Raw Normal View History

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