aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this2.C
blob: 5029a4a7638a4ee1d716f6e3959f9455a38aaee2 (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-do compile { target c++11 } }

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