* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / rv-this.C
blob8064a51d44f131d951ea167cda9a2f407ad918f8
1 // PR c++/56701
2 // { dg-require-effective-target c++11 }
4 struct A
6   void f(){ A*&& a = this; }
7 };