summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-errloc.C
blob: f4766691eecfb2ee719e18f5360a55d97b94cf08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Test that error messages about creating the closure object refer to
// the lambda-introducer.
// { dg-options -std=c++0x }

struct A
{
  A();
  A(const A& a) = delete;	// { dg-error "declared" }
};

int main()
{
  A ar[4][3];
  [ar] { };			// { dg-error "3:" }

  A a;
  [a] { };			// { dg-error "3:" }
}