(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
static_assert17.C
// PR c++/99893
// { dg-do compile { target c++11 } }

void f(...);

template<class... Ts>
void g() {
  f([] { static_assert(Ts::value, ""); }...);
}