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>();