1 /* { dg-do compile } */ 2 3 int a; b()4 int b() 5 { 6 int c, d; 7 if (a) 8 d = b(); 9 return 1 + c + d; 10 } 11