blob: 1d6bb75cd77f8ded269ca6d444b9799490280a2b [file] [log] [blame]
// PR c++/85113
// { dg-do compile { target c++14 } }
template<bool> struct A {};
constexpr int foo()
{
A<__builtin_constant_p(0)> a{};
return 0;
}