blob: cd872756b3e435c2d9a3bab3ddc8e9473c63919b [file] [log] [blame]
// { dg-do compile { target c++11 } }
template <typename ...T>
void expand(T const& ...);
template <typename ...T>
void f(T ...t) {
expand([t]{ }...);
}