Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
overload
/
template1.C
blob: 5bfad8464f7de340d56be7a490221ae18dd684e5 [
file
] [
log
] [
blame
]
template
<
typename
T
>
T
Foo
(
int
)
{
T d
;}
void
Baz
(
void
(*)(
int
),
int
);
int
Foo
();
int
Baz
(
int
(*)(),
float
);
void
Bar
()
{
Baz
(
Foo
,
1.0f
);
}