mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
348 B
Rust
21 lines
348 B
Rust
// MIR for `main` after AbortUnwindingCalls
|
|
|
|
fn main() -> () {
|
|
let mut _0: ();
|
|
let _1: ();
|
|
scope 1 {
|
|
}
|
|
|
|
bb0: {
|
|
StorageLive(_1);
|
|
_1 = const ();
|
|
asm!("", options(MAY_UNWIND)) -> [return: bb1, unwind terminate(abi)];
|
|
}
|
|
|
|
bb1: {
|
|
StorageDead(_1);
|
|
_0 = const ();
|
|
return;
|
|
}
|
|
}
|