2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 920501-1.c
blob6f757cac59c3b4b3c6f02828c4a2a7e528237ebd
1 int s[2];
2 x(){if(!s[0]){s[1+s[1]]=s[1];return 1;}}
3 main(){s[0]=s[1]=0;if(x(0)!=1)abort();exit(0);}