Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / decltype-refbug.C
blob8e3c824072450661469b43d6d1740b3a209a0712
1 // { dg-options "-std=c++0x" }
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");