//ww:run-exit 251 package main; type tk = enum i32 { A = 7i32, G = -5i32 }; fn main() i32 = { let a: [2]tk = [tk.G, tk.A]; return a[0]: i32; };