Skip to content

Commit 9b45713

Browse files
committed
let-else: fix attribute aliasing + add test for issue 89807
1 parent af2f0e6 commit 9b45713

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

compiler/rustc_ast_lowering/src/block.rs

+1
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
152152
let block = self.lower_block(els, false);
153153
self.arena.alloc(self.expr_block(block, AttrVec::new()))
154154
};
155+
self.alias_attrs(let_expr.hir_id, local_hir_id);
155156
self.alias_attrs(else_expr.hir_id, local_hir_id);
156157
let if_expr = self.arena.alloc(hir::Expr {
157158
hir_id: stmt_hir_id,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// check-pass
2+
// issue #89807
3+
4+
#![feature(let_else)]
5+
6+
#[deny(unused_variables)]
7+
8+
fn main() {
9+
let value = Some(String::new());
10+
#[allow(unused)]
11+
let banana = 1;
12+
#[allow(unused)]
13+
let Some(chaenomeles) = value else { return }; // OK
14+
}

0 commit comments

Comments
 (0)