mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 11:14:57 +00:00
10 lines
195 B
Rust
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
|
|
_ => {}
|
|
}
|
|
}
|