rust/tests/mir-opt/no_drop_for_inactive_variant.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
383 B
Rust
Raw Normal View History

// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2020-03-05 13:52:50 -06:00
// Ensure that there are no drop terminators in `unwrap<T>` (except the one along the cleanup
// path).
2020-07-27 14:22:43 -05:00
// EMIT_MIR no_drop_for_inactive_variant.unwrap.SimplifyCfg-elaborate-drops.after.mir
fn unwrap<T>(opt: Option<T>) -> T {
match opt {
Some(x) => x,
None => panic!(),
}
}
fn main() {
let _ = unwrap(Some(1i32));
}