Testcase for (llvm-gcc) 81399. Adjust an older
[oota-llvm.git] / test / FrontendC / 2008-01-11-ChainConsistency.c
1 // RUN: %llvmgcc -S %s -o - -fnested-functions | not grep nest
2
3 void n1(void) { void a(void) { a(); } a(); }