-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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 #74566 - lzutao:guard, r=petrochenkov
Gate if-let guard feature Enhanced on #74315. That PR is in crater queue so I don't want to push to it. Close #74232 cc #51114
- Loading branch information
Showing
7 changed files
with
453 additions
and
3 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
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
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
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
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,18 @@ | ||
// check-pass | ||
|
||
// Unlike `if` condition, `match` guards accept struct literals. | ||
// This is detected in <https://github.com/rust-lang/rust/pull/74566#issuecomment-663613705>. | ||
|
||
#[derive(PartialEq)] | ||
struct Foo { | ||
x: isize, | ||
} | ||
|
||
fn foo(f: Foo) { | ||
match () { | ||
() if f == Foo { x: 42 } => {} | ||
_ => {} | ||
} | ||
} | ||
|
||
fn main() {} |
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,85 @@ | ||
// gate-test-if_let_guard | ||
|
||
use std::ops::Range; | ||
|
||
fn _if_let_guard() { | ||
match () { | ||
() if let 0 = 1 => {} | ||
//~^ ERROR `if let` guard is not implemented | ||
//~| ERROR `let` expressions are not supported here | ||
|
||
() if (let 0 = 1) => {} | ||
//~^ ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions are not supported here | ||
|
||
() if (((let 0 = 1))) => {} | ||
//~^ ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions are not supported here | ||
|
||
() if true && let 0 = 1 => {} | ||
//~^ ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions are not supported here | ||
|
||
() if let 0 = 1 && true => {} | ||
//~^ ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions are not supported here | ||
|
||
() if (let 0 = 1) && true => {} | ||
//~^ ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions are not supported here | ||
|
||
() if true && (let 0 = 1) => {} | ||
//~^ ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions are not supported here | ||
|
||
() if (let 0 = 1) && (let 0 = 1) => {} | ||
//~^ ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions are not supported here | ||
//~| ERROR `let` expressions are not supported here | ||
|
||
() if let 0 = 1 && let 1 = 2 && (let 2 = 3 && let 3 = 4 && let 4 = 5) => {} | ||
//~^ ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions are not supported here | ||
//~| ERROR `let` expressions are not supported here | ||
//~| ERROR `let` expressions are not supported here | ||
//~| ERROR `let` expressions are not supported here | ||
//~| ERROR `let` expressions are not supported here | ||
|
||
() if let Range { start: _, end: _ } = (true..true) && false => {} | ||
//~^ ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions are not supported here | ||
_ => {} | ||
} | ||
} | ||
|
||
fn _macros() { | ||
macro_rules! use_expr { | ||
($e:expr) => { | ||
match () { | ||
() if $e => {} | ||
_ => {} | ||
} | ||
} | ||
} | ||
use_expr!((let 0 = 1 && 0 == 0)); | ||
//~^ ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions are not supported here | ||
use_expr!((let 0 = 1)); | ||
//~^ ERROR `let` expressions in this position are experimental | ||
//~| ERROR `let` expressions are not supported here | ||
match () { | ||
#[cfg(FALSE)] | ||
() if let 0 = 1 => {} | ||
//~^ ERROR `if let` guard is not implemented | ||
_ => {} | ||
} | ||
use_expr!(let 0 = 1); | ||
//~^ ERROR no rules expected the token `let` | ||
} | ||
|
||
fn main() {} |
Oops, something went wrong.