aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-variadic1.C
blob: e85f2bcff81d4c7d1eba22d69377573d58988bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/49672
// { dg-do compile { target c++11 } }

template<typename ... Args>
static void foo()
{
  [](Args..., int x) {
    x;
  };
}

int main()
{
  foo();
}