blob: 9c5caa6b6770c4de9687d08bc2bae3a0d76c0d93 [file] [log] [blame]
// PR 97395
// ICE injecting hidden decl in wrong namespace
namespace pr {
template<typename WW>
void
kp ()
{
extern WW hz;
}
void
n5 ()
{
kp<int[]> ();
kp<int[1]> ();
}
}