rust/tests/ui/parser/issues/issue-24375.rs
2023-12-03 12:25:46 +01:00

10 lines
215 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 `[`
_ => {}
}
}