Skip to content

Commit 7c109f5

Browse files
committed
Updated rustc version
1 parent 9f0a2e2 commit 7c109f5

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/basic_block.rs

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ fn simplify_handler<'tcx>(
5757
target,
5858
unwind: _,
5959
replace: _,
60+
drop: _,
61+
async_fut: _,
6062
} => {
6163
let ty = monomorphize(method_instance, place.ty(method, tcx).ty, tcx);
6264

src/terminator/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,9 @@ pub fn handle_terminator<'tcx>(
172172
target,
173173
unwind: _,
174174
replace: _,
175+
//TODO: figure out what the hell those 2 fields are doing.
176+
drop: _,
177+
async_fut: _,
175178
} => {
176179
let ty = ctx.monomorphize(place.ty(ctx.body(), ctx.tcx()).ty);
177180

0 commit comments

Comments
 (0)