OSDN Git Service

PR c++/44157
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / decltype-refbug.C
1 // { dg-options "-std=c++0x" }
2 // PR c++/33045
3 int && f ();
4
5 template<typename T, typename U>
6 struct is_same
7 {
8   static const bool value = false;
9 };
10
11 template<typename T>
12 struct is_same<T, T>
13 {
14   static const bool value = true;
15 };
16
17 static_assert(is_same<decltype(f()), int&&>::value, "decltype of rvalue reference");