void main() { int[] a = new int[1]; a[0] = 0; a[0]--; --a[0]; test(a[0]--); test(a[0]--); test(--a[0]); test(--a[0]); }