PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / builtin12.C
blob1d6bb75cd77f8ded269ca6d444b9799490280a2b
1 // PR c++/85113
2 // { dg-do compile { target c++14 } }
4 template<bool> struct A {};
6 constexpr int foo()
8   A<__builtin_constant_p(0)> a{};
9   return 0;