在cppreference.com上,提供了以下代码作为解释依赖名称解析的示例:
#include <iostream>
void g(double) { std::cout << "g(double)\n"; }
template<class T>
struct S {
void f() const {
g(1); // "g" is a non-dependent name, bound now
}
};
void g(int) { std::cout << "g(int)\n"; }
int main()
{
g(1); // calls g(int)
S<int> s;
s.f(); // calls g(double)
}
当前版本的 Visual C++ (19.0.23918.0) 产生以下输出:
g(int)
g(int)
这是标准允许的,还是 MSVC 中的错误?