]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/pass/try-operator-custom.rs
Auto merge of #104915 - weihanglo:update-cargo, r=ehuss
[rust.git] / src / tools / miri / tests / pass / try-operator-custom.rs
1 fn main() {
2     assert!(Ok::<i32, String>(42) == Ok(42));
3 }