summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-ice3.C
blob: 8ff36478d538bbe869b2d4cb70879485f4d45c39 (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-options "-std=c++0x" }

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;
}