/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / constexpr-recursion1.C
blob79e0b5a8da1e18e5890996f700485667087ff938
1 // PR c++/70449
2 // { dg-do compile { target c++14 } }
3 // { dg-options "-Wall" }
5 template <int N>
6 constexpr int f1 ()
8   enum E { a = f1<0> () }; // { dg-error "called in a constant expression before its definition is complete|is not an integer constant" }
9   return 0;
12 constexpr int f3 ()
14   enum E { a = f3 () }; // { dg-error "called in a constant expression before its definition is complete|is not an integer constant" }
15   return 0;