rust/tests/ui/parser/issues/issue-24375.rs
2024-01-28 16:12:21 +01:00

10 lines
195 B
Rust

static tmp : [&'static str; 2] = ["hello", "he"];
fn main() {
let z = "hello";
match z {
tmp[0] => {} //~ error: expected a pattern, found an expression
_ => {}
}
}