Fortran: checking of pointer targets for structure constructors [PR56423]
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / lambda / lambda-variadic6.C
blobd9707d05c70df79eb1c01399b367d617a0d2ec55
1 // PR c++/84160
2 // { dg-do compile { target c++11 } }
4 template < typename ... T > void f (T ... a) 
6   [a ...] { [a ...] {}; };
9 void g ()
11   f < int > (0);