Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
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>
();
}