rust/tests/ui/parser/issues/issue-24375.rs
2023-01-11 09:32:08 +00:00

10 lines
205 B
Rust

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