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

template <int... E>
void f() {
  [] { enum e { e = E }; };	// { dg-message "" }
}
template void f<>();