* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / decltype-refbug.C
blobcecff3c2941c7cb1d972574df74b92c937426d8e
1 // { dg-do compile { target c++11 } }
2 // PR c++/33045
3 int && f ();
5 template<typename T, typename U>
6 struct is_same
8   static const bool value = false;
9 };
11 template<typename T>
12 struct is_same<T, T>
14   static const bool value = true;
17 static_assert(is_same<decltype(f()), int&&>::value, "decltype of rvalue reference");