void main() {
    int* a = new int[1];
    a[0] = 7;
    a[0] &= 15;
    test(a[0]);
    a[0] &= 9;
    test(a[0]);
}