Blame src/api/iso646.c

nsz 87c749
#include <iso646.h>
nsz 87c749
#define C(n) switch(n){case n:;}
nsz 87c749
static void f(){
nsz 87c749
int i = 0;
nsz 87c749
i and_eq 1;
nsz 87c749
i or_eq 1;
nsz 87c749
i xor_eq 1;
nsz 87c749
C(0 not_eq 1)
nsz 87c749
C(0 and 1)
nsz 87c749
C(0 or 1)
nsz 87c749
C(0 bitand 1)
nsz 87c749
C(0 bitor 1)
nsz 87c749
C(0 xor 1)
nsz 87c749
C(not 0)
nsz 87c749
C(compl 0)
nsz 87c749
}