(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
concepts/
var-concept7.C
// 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;