* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / rv-dotstar.C
blob7834be5579fbd8cbfbf7af5da9466507f42e9f06
1 // PR c++/49389
2 // { dg-do compile { target c++11 } }
4 template<class T> T&& val();
6 struct A {};
8 typedef decltype(val<A>().*val<int A::*>()) type;
10 template<class> struct assert_type;
11 template<> struct assert_type<int&&> {};
13 assert_type<type> test;