1 // PR c++/51046
2 // { dg-do compile { target c++11 } }
3 
4 template<int... IS>
f()5 void f()
6 {
7   for (int i : IS);		// { dg-error "not expanded" }
8 }
9 
main()10 int main()
11 {
12   f<0, 1, 2>();
13 }
14