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