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