1/* Contributed by Nicola Pero Mon Mar 5 19:57:11 CET 2001 */ 2 3int main (void) 4{ 5 inline int nested (void) 6 { 7 return 1; 8 } 9 10 if (nested () != 1) 11 { 12 exit (1); 13 } 14 15 return 0; 16} 17 18