Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
rv-deduce.C
blob: ce06d13196a49e6e3673d34536a970089e1bc915 [
file
] [
log
] [
blame
]
// PR c++/36816, core issue 873
// { dg-do compile { target c++11 } }
template
<
class
T
>
void
h
(
T
&&)
{
}
void
(*
pf
)(
int
&)
=
&
h
;
template
<>
void
h
(
char
&);
template
void
h
(
double
&);