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

4 lines
60 B
Rust

fn main() {
assert!(Ok::<i32, String>(42) == Ok(42));
}