1 // PR c++/86678
2 // { dg-do compile { target c++14 } }
3 
always_true()4 constexpr bool always_true() { return true; }
f()5 int f() { return 1; }
g()6 constexpr int g() {
7   if (always_true())
8     return 0;
9   return f();
10 }
11