例如,GCC 和 clang 都无法编译以下代码:
struct S {};
namespace N
{
void g(S);
}
using N::g;
namespace N
{
void g(int);
}
int main()
{
g(0);
}
出现错误:
test.cpp: In function 'int main()':
test.cpp:17:8: error: could not convert '0' from 'int' to 'S'
g(0);
^
暗示 using-declaration 仅导入在using-declaration 出现的点上方声明的重载,而不是可能稍后出现的重载(但在使用名称之前)。
这种行为正确吗?