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