2023-10-16 12:36:39 -05:00
|
|
|
// skip-filecheck
|
2023-06-08 02:18:34 -05:00
|
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
2020-03-05 13:52:50 -06:00
|
|
|
|
2020-03-03 14:05:59 -06:00
|
|
|
// Ensure that there are no drop terminators in `unwrap<T>` (except the one along the cleanup
|
|
|
|
// path).
|
|
|
|
|
2024-03-17 13:36:55 -05:00
|
|
|
// EMIT_MIR no_drop_for_inactive_variant.unwrap.SimplifyCfg-pre-optimizations.after.mir
|
2020-03-03 14:05:59 -06:00
|
|
|
fn unwrap<T>(opt: Option<T>) -> T {
|
|
|
|
match opt {
|
|
|
|
Some(x) => x,
|
|
|
|
None => panic!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = unwrap(Some(1i32));
|
|
|
|
}
|