Add regression test for #10989
This commit is contained in:
parent
e8bad53d63
commit
0a2d0b15a1
@ -1802,3 +1802,21 @@ where
|
||||
"#,
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn match_ergonomics_with_binding_modes_interaction() {
|
||||
check_types(
|
||||
r"
|
||||
enum E { A }
|
||||
fn foo() {
|
||||
match &E::A {
|
||||
b @ (x @ E::A | x) => {
|
||||
b;
|
||||
//^ &E
|
||||
x;
|
||||
//^ &E
|
||||
}
|
||||
}
|
||||
}",
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user