// PR c++/85133
// { dg-do compile { target c++17_only } }
// { dg-options "-fconcepts-ts" }
template<typename> concept bool C; // { dg-error "no initializer" }
template<C...> struct A {};
A<int> a;
// PR c++/85133
// { dg-do compile { target c++17_only } }
// { dg-options "-fconcepts-ts" }
template<typename> concept bool C; // { dg-error "no initializer" }
template<C...> struct A {};
A<int> a;