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