1 // PR c++/85305
2 // { dg-additional-options -std=c++17 }
3 
4 template <int... Is>
foo()5 void foo()
6 {
7   ([i = Is]{}(), ...);
8 }
9