summary refs log tree commit diff
path: root/src/test/compile-fail/match-vec-mismatch-2.rs
blob: 6ea0300cf1e7dff74a7560a6b84454ee02fa9634 (plain)
1
2
3
4
5
fn main() {
    match () {
        [()] => { } //~ ERROR mismatched types: expected `()` but found a vector pattern
    }
}