blob: 1d128d33e4f49d53cfd4d4a8de88db95e35f25d2 [file] [log] [blame]
static tmp : [&'static str; 2] = ["hello", "he"];
fn main() {
let z = "hello";
match z {
tmp[0] => {} //~ ERROR expected one of `=>`, `@`, `if`, or `|`, found `[`
_ => {}
}
}