aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-err1.C
blob: 932ff1bee9265d4f425928d1799cfa5826c8f50d (plain)
1
2
3
4
5
6
7
8
// PR c++/51415
// { dg-do compile { target c++11 } }

void foo()
{
  int x[1];
  [x]{} = 0;			// { dg-error "lambda" }
}