]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/pass/try-operator-custom.rs
Merge commit '598f0909568a51de8a2d1148f55a644fd8dffad0' into sync_cg_clif-2023-01-24
[rust.git] / src / tools / miri / tests / pass / try-operator-custom.rs
1 fn main() {
2     assert!(Ok::<i32, String>(42) == Ok(42));
3 }