blob: 4848dde3615537a06f5635f1bbbad8688c6c3ca1 [file] [log] [blame]
int foo (int b, int c)
{
int x;
if (b)
return x & c;
else
return 1;
}
extern void abort (void);
int main()
{
if (foo(1, 0) != 0)
abort ();
return 0;
}