aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-diag1.C
blob: dc1043b3fb1a54b4aab5f6b491839f85b16b1286 (plain)
1
2
3
4
5
6
7
8
// { dg-require-effective-target c++11 }

int main()
{
  int x;
  auto f = [x]{ };
  f.__x.foo;			// { dg-error "<lambda\\(\\)>::<x capture>" }
}