rust/src/test/compile-fail/alt-vec-mismatch.rs
2013-04-30 16:17:19 -07:00

7 lines
158 B
Rust

fn main() {
match ~"foo" {
['f', 'o', .._] => { } //~ ERROR mismatched types: expected `~str` but found a vector pattern
_ => { }
}
}