Lower zeroing array assignment to memset for allocatable arrays.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / lambda / lambda-variadic1.C
blobe85f2bcff81d4c7d1eba22d69377573d58988bd1
1 // PR c++/49672
2 // { dg-do compile { target c++11 } }
4 template<typename ... Args>
5 static void foo()
7   [](Args..., int x) {
8     x;
9   };
12 int main()
14   foo();