void main() {
    int a = 7;
    a = a & 15;
    test(a);
    a &= 9;
    test(a);
    
    long b = 7L;
    b = b & 15L;
    test(b);
    b &= 9L;
    test(b);
}