rust/src/test/compile-fail/match-vec-mismatch-2.rs
2013-05-27 17:28:39 -04:00

6 lines
124 B
Rust

fn main() {
match () {
[()] => { } //~ ERROR mismatched types: expected `()` but found a vector pattern
}
}