2018-03-03 Paolo Carlini <paolo.carlini@oracle.com> PR c++/67370 * g++.dg/cpp0x/lambda/lambda-67370.C: New. From-SVN: r258218
10 lines
161 B
C
10 lines
161 B
C
// { dg-do compile { target c++11 } }
|
|
|
|
template <typename ...T>
|
|
void expand(T const& ...);
|
|
|
|
template <typename ...T>
|
|
void f(T ...t) {
|
|
expand([t]{ }...);
|
|
}
|