blob: 4845937d5440177962982d4131d3ef4e89a752c1 [file] [log] [blame] [edit]
struct S(());
fn main() {
let array = [S(())];
match array {
[()] => {}
//~^ ERROR mismatched types [E0308]
_ => {}
}
}