rust/tests/run-pass/try-operator-custom.rs
2019-02-26 18:37:45 +00:00

4 lines
60 B
Rust

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