aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-defarg.C
blob: cefa24d434e2618fa87c275763833f5f7e8f4452 (plain)
1
2
3
4
5
6
// { dg-do compile { target c++11 } }

int main()
{
  [](int a = 1) { return a; }(); // { dg-error "" }
}