forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#89282 - sexxi-goose:fix-88118, r=nikomatsakis
2229: Consume IfLet expr When using the IfLet guard feature, we can ICE when attempting to resolve PlaceBuilders. For pattern matching, we currently don't consume the IfLet expression when "visiting" the arms leading us to not "read" all variables and hence not being able to resolve them. r? `@nikomatsakis` Closes rust-lang#88118
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
src/test/ui/closures/2229_closure_analysis/issue-88118-2.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// edition:2021 | ||
// run-pass | ||
#![feature(if_let_guard)] | ||
#[allow(unused_must_use)] | ||
#[allow(dead_code)] | ||
|
||
fn print_error_count(registry: &Registry) { | ||
|x: &Registry| { | ||
match &x { | ||
Registry if let _ = registry.try_find_description() => { } | ||
//~^ WARNING: irrefutable `if let` guard pattern | ||
_ => {} | ||
} | ||
}; | ||
} | ||
|
||
struct Registry; | ||
impl Registry { | ||
pub fn try_find_description(&self) { | ||
unimplemented!() | ||
} | ||
} | ||
|
||
fn main() {} |
12 changes: 12 additions & 0 deletions
12
src/test/ui/closures/2229_closure_analysis/issue-88118-2.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
warning: irrefutable `if let` guard pattern | ||
--> $DIR/issue-88118-2.rs:10:29 | ||
| | ||
LL | Registry if let _ = registry.try_find_description() => { } | ||
| ^ | ||
| | ||
= note: `#[warn(irrefutable_let_patterns)]` on by default | ||
= note: this pattern will always match, so the guard is useless | ||
= help: consider removing the guard and adding a `let` inside the match arm | ||
|
||
warning: 1 warning emitted | ||
|