summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-ice3.C
blob: fa8a6e63a934e91f9918dfd0f4661e23bacf9a78 (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|non-static" }
    return false;
  };
}

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