* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / rv-func3.C
blob673830350a10a5f4f187c63daae26e7f03285b67
1 // DR 1328
2 // { dg-do compile { target c++11 } }
4 template <class T> struct A {
5   operator T&();  // #1
6   operator T&&(); // #2
7 };
8 typedef int Fn();
9 A<Fn> a;
10 Fn&& f = a;