• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %llvmgcc -S %s -o - -fnested-functions | not grep nest
2 
n1(void)3 void n1(void) { void a(void) { a(); } a(); }
4