rust/src/test/compile-fail/match-vec-mismatch-2.rs

6 lines
124 B
Rust
Raw Normal View History

fn main() {
match () {
2013-04-30 18:17:19 -05:00
[()] => { } //~ ERROR mismatched types: expected `()` but found a vector pattern
}
}