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

int main()
{
  [](int a = 1) { return a; }(); // { dg-error "default argument" "" { target { c++11_only } } }
}