void main() {
    int* a = new int[1];
    a[0] = 0;
    a[0] ^= 2;
    test(a[0]);
    a[0] ^= 7;
    test(a[0]);
}