blob: 9a275e908fa2b5225fc493a582f97b027ce9aaf6 [file] [log] [blame]
// ICE with overloads not ordering using decls. Failed to invoke
// deduping logic
void remove (const char *);
namespace std
{
using ::remove;
void remove ();
}
using namespace std;
void test01 ()
{
remove (0);
}