-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
38 additions
and
35 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
37 changes: 37 additions & 0 deletions
37
src/test/ui/closures/2229_closure_analysis/match/match-edge-cases_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,37 @@ | ||
// edition:2021 | ||
|
||
enum SingleVariant { | ||
A | ||
} | ||
|
||
struct TestStruct { | ||
x: i32, | ||
y: i32, | ||
z: i32, | ||
} | ||
|
||
fn edge_case_if() { | ||
let sv = SingleVariant::A; | ||
let condition = true; | ||
// sv should not be captured as it is a SingleVariant | ||
let _a = || { | ||
match sv { | ||
SingleVariant::A if condition => (), | ||
_ => () | ||
} | ||
}; | ||
let mut mut_sv = sv; | ||
_a(); | ||
|
||
// ts should be captured | ||
let ts = TestStruct { x: 1, y: 1, z: 1 }; | ||
let _b = || { match ts { | ||
TestStruct{ x: 1, .. } => (), | ||
_ => () | ||
}}; | ||
let mut mut_ts = ts; | ||
//~^ ERROR: cannot move out of `ts` because it is borrowed | ||
_b(); | ||
} | ||
|
||
fn main() {} |
2 changes: 1 addition & 1 deletion
2
...re_analysis/match/match-edge-cases.stderr → ..._analysis/match/match-edge-cases_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