1 2 3 4 5 6 7 8 9 10 11
fn f(i int) {} fn test_postfix() { mut x := 1 _ = (x++) x--, x-- // OK f(x++) a := [x] _ = a[x--] }