Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / gcc / testsuite / g++.dg / cpp0x / lambda / lambda-nsdmi3.C
1 // PR c++/55972
2 // { dg-do compile { target c++11 } }
3
4 class C
5 {
6   void f();
7   int j = 10;
8   int i = [this]() { return this->j; }();
9 };