rust/tests/ui/match/issue-91058.rs

12 lines
158 B
Rust

struct S(());
fn main() {
let array = [S(())];
match array {
[()] => {}
//~^ ERROR mismatched types [E0308]
_ => {}
}
}