aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-ice3.C
blob: 03a7a4bb60d0539ad13d23b9e8e98aae9f3591eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// PR c++/47795
// { dg-do compile { target c++11 } }

class Klass
{
  unsigned int local;
public:
  bool dostuff();
};

bool Klass::dostuff()
{
  auto f = []() -> bool {
    if (local & 1) { return true; } // { dg-error "not captured" }
    return false;
  };
}

int main()
{
  Klass c;
  return 0;
}