summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this2.C
blob: 04fe474c733c2532bdd26a85d735f4c2bf664e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// PR c++/43856
// Test for implicit 'this' capture via rewriting.
// { dg-options "-std=c++0x" }

struct S1 {
  int operator()(int);
  int i;
  void g();
  void f() {
    [=]() {
      i;
      g();
      S1::g();
      operator()(42);
    };
  }
};