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