blob: 7834be5579fbd8cbfbf7af5da9466507f42e9f06 [file] [log] [blame]
// 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;