Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
explicit27.C
blob: 368510513a84ff317d7abb6711f9c2895a4098b4 [
file
] [
log
] [
blame
]
// { dg-do link }
// GROUPS passed templates
template
<
class
T
>
void
foo
(
T t
);
template
<>
void
foo
(
int
i
)
{}
int
main
()
{
(
void
(*)(
int
))
&
foo
<int>
;
}