Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
rv-dotstar.C
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
;