Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
overload14.C
blob: a4c6cff8a2171992dabe0c3bd29814fdf7e02184 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Bug: g++ fails to recognize that the template matches the target type.
template
<
class
T
>
void
foo
(
T
*,
int
);
struct
A
;
void
bar
()
{
void
(*
p
)(
A
*,
int
)
=
&
foo
;
}