summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-variadic1.C
blob: f17b33618aa4c5393c1175dac7a17076a181b7c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/49672
// { dg-options -std=c++0x }

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

int main()
{
  foo();
}