aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-nsdmi3.C
blob: da7e0bfed20136562ced62b9be760d751ad08088 (plain)
1
2
3
4
5
6
7
8
9
// PR c++/55972
// { dg-do compile { target c++11 } }

class C
{
  void f();
  int j = 10;
  int i = [this]() { return this->j; }();
};