Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
explicit75.C
blob: aed69aa1fb0677f2da99af926902f7942d7a2128 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Test for not complaining about mismatches during unification.
template
<
void
(*
F
)(
int
)>
void
f
();
template
<
void
(*
F
)(
double
)>
void
f
();
extern
void
g
(
double
);
void
h
()
{
f
<g>
();
}