// PR c++/63889 // { dg-do compile { target c++14 } } template struct A { template static constexpr bool is_ok = true; template> A(T) { } }; A p(42);