Skip to content

Commit 47a7a91

Browse files
Use (actually) dummy place for let-else divergence
1 parent 1b57946 commit 47a7a91

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

compiler/rustc_mir_build/src/build/matches/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2334,7 +2334,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
23342334
// This place is not really used because this destination place
23352335
// should never be used to take values at the end of the failure
23362336
// block.
2337-
let dummy_place = Place { local: RETURN_PLACE, projection: ty::List::empty() };
2337+
let dummy_place = self.temp(self.tcx.types.never, else_block.span);
23382338
let failure_block;
23392339
unpack!(
23402340
failure_block = self.ast_block(

src/test/ui/let-else/issue-100103.rs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// edition:2021
2+
// check-pass
3+
4+
#![feature(try_blocks)]
5+
#![feature(let_else)]
6+
7+
fn main() {
8+
let _: Result<i32, i32> = try {
9+
let Some(x) = Some(0) else {
10+
Err(1)?
11+
};
12+
13+
x
14+
};
15+
}

0 commit comments

Comments
 (0)