blob: 213c93f4d08c73668a54c73585e3374a74328399 [file] [log] [blame]
#include <stdlib.h>
static int a[40] = {7, 5, 3, 3, 0, 0, 3};
short b;
int c = 5;
int main() {
b = 0;
for (; b <= 3; b++)
if (a[b + 6] ^ (0 || c))
;
else
break;
if (b != 4)
abort ();
exit (0);
}