blob: f37b081430137ff77d4f02b17bd19e7731f05537 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// MIR for `test2` after Inline
fn test2(_1: &dyn X) -> bool {
debug x => _1;
let mut _0: bool;
let mut _2: &dyn X;
let mut _3: &dyn X;
scope 1 (inlined test) {
debug x => _2;
}
bb0: {
StorageLive(_2);
StorageLive(_3);
_3 = &(*_1);
_2 = move _3 as &dyn X (PointerCoercion(Unsize));
StorageDead(_3);
_0 = <dyn X as X>::y(move _2) -> [return: bb1, unwind continue];
}
bb1: {
StorageDead(_2);
return;
}
}
|