summaryrefslogtreecommitdiff
path: root/tests/mask.c
blob: d26546f5b111a88349445a6bc7420e3b672cb904 (plain)
1
2
3
4
5
6
int a = -1;//11111...11
int main() {
    a &= ~3;// 111..00
    e:goto e;
    return 0;
}