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

7 lines
158 B
Rust

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