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

6 lines
123 B
Rust
Raw Normal View History

fn main() {
match () {
2013-04-29 22:46:54 -05:00
[()] => { } //~ ERROR mismatched type: expected `()` but found a vector pattern
}
}