1 // PR c++/49983
2 // { dg-do compile { target c++11 } }
3 
4 template <class T>
f(T t)5 void f(T t)
6 {
7   for (auto v : t);
8 }
9