]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this.C
merge in cxx0x-lambdas-branch@152308
[thirdparty/gcc.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 };