1#unittest { 2 name: "gnode_array_remove_byindex inside postfix expression."; 3 result: "2"; 4}; 5 6enum foo { 7 e1 = 1, 8 e2 = 2, 9 e3 10} 11 12func main() { 13 return foo.e2.String(); 14} 15