aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-ice11.C
blob: 58f0fa35a3e01bf44108736ed4b9141113ee8df3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/60252
// { dg-require-effective-target c++11 }

struct A
{
  int i;			// { dg-message "" }

  void foo()
  {
    [&](){ [&](int[i]){}; };	// { dg-error "" }
  }
};