(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
concepts-requires33.C
// PR c++/107417
// { dg-do compile { target c++20 } }

template<class... T>
void f() requires (requires (T x) { true; } && ...);

int main() {
  f<int>();
  f<int, void>(); // { dg-error "no match" }
}