OSDN Git Service

PR c++/51107
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / lambda / lambda-this.C
1 // Test that implicit 'this' capture works, but that it's still an rvalue.
2 // { dg-options -std=c++0x }
3
4 struct A
5 {
6   int i;
7   void f()
8   {
9     [=] { i = 0; };
10     [&] { i = 0; };
11     [=] { this = 0; };          // { dg-error "lvalue" }
12   }
13 };