aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/rv-dotstar.C
blob: 7834be5579fbd8cbfbf7af5da9466507f42e9f06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/49389
// { dg-do compile { target c++11 } }

template<class T> T&& val();

struct A {};

typedef decltype(val<A>().*val<int A::*>()) type;

template<class> struct assert_type;
template<> struct assert_type<int&&> {};

assert_type<type> test;