blob: 36cf2eb3b968c844a4e4b1f1553e5e0f8e66c62c [file] [log] [blame]
// PR c++/50837
// { dg-do compile { target c++11 } }
template<class T>
struct z
{
static constexpr bool test_constexpr()
{
return true;
}
static void test()
{
static_assert(test_constexpr(), "test1");
}
};
int main()
{
z<int>::test();
}