Add a regression test for match guard

Unlike if condition, match guard accepts struct literal.
This commit is contained in:
Lzu Tao 2020-07-25 01:14:10 +00:00
parent 0a8d4ce055
commit ef50477c78
1 changed files with 18 additions and 0 deletions

View File

@ -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() {}