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