aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/rv-return.C
blob: e52101feae1c627cfd96e40f660e540343631fd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/41815
// { dg-options -std=c++0x }

template<typename T, typename U> struct same_type;
template<typename T> struct same_type<T, T> {};

int const f() { return 0; }

int &&r = f(); // binding "int&&" to "int" should succeed
same_type<decltype(f()), int const> s1;
same_type<decltype(0,f()), int> s2;

template <class T>
T const g() { return 0; }

int &&r2 = g<int>();
same_type<decltype(g<int>()), int const> s3;
same_type<decltype(0,g<int>()), int> s4;