7 lines
147 B
Rust
7 lines
147 B
Rust
|
fn main() {
|
||
|
match ~"foo" {
|
||
|
['f', 'o', .._] => { } //~ ERROR mismatched type: expected `~str` but found vector
|
||
|
_ => { }
|
||
|
}
|
||
|
}
|