modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/20040520-1.c (about) 1 /* PR 15454 */ 2 3 void abort (); 4 int main () { 5 int foo; 6 int bar (void) 7 { 8 int baz = 0; 9 if (foo!=45) 10 baz = foo; 11 return baz; 12 } 13 foo = 1; 14 if (!bar ()) 15 abort (); 16 return 0; 17 }