Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
spec17.C
blob: 91c5d56fc478bbd3bfcafc92dccf2f2caf79c7fc [
file
] [
log
] [
blame
]
// PR c++/16224
namespace
io
{
template
<typename>
int
foo
();
}
using
namespace
io
;
template
<>
int
foo
<int>
();
// { dg-error "" }
int
a
=
foo
<int>
();