1 // { dg-do compile { target c++14 } }
2 
3 bool b;
f()4 auto f()
5 {
6   if (b)
7     return 42;
8   else
9     return f();
10 }
11