blob: 34e2b1a134ff91735a3880a97d23b7cf21d8becf [file] [log] [blame]
// ignore-wasm32-bare compiled with panic=abort by default
// Ensure that there are no drop terminators in `unwrap<T>` (except the one along the cleanup
// path).
// 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));
}