void main() {
    int a = 0;
    a = a | 2;
    test(a);
    a |= 5;
    test(a);
    
    long b = 0L;
    b = b | 2L;
    test(b);
    b |= 5L;
    test(b);
}