// PR c++/50837 // { dg-do compile { target c++11 } } template struct z { static constexpr bool test_constexpr() { return true; } static void test() { static_assert(test_constexpr(), "test1"); } }; int main() { z::test(); }