aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/fold-lambda2.C
blob: e93f55f7fd83774d797dbe6d191224d868790801 (plain)
1
2
3
4
5
6
7
8
// PR c++/85305
// { dg-additional-options -std=c++17 }

template <int... Is>
void foo()
{
  ([i = Is]{}(), ...); 
}