aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-errloc.C
blob: 3dc7f8774c3de2ca3a6b715e2c44a4132b831ac8 (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-do compile { target c++11 } }

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

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

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