下面的构造函数参数const int
被 Visual Studio 2019 的 Intellisense 误解为 a,我得到一个错误。我正在使用 C++ Preview (C++ 20) 和模块。编译成功。我可能错过了什么吗?可能有关于我缺少的模块的关键细节。
Bar(const Foo foo)
: foo(foo)
{
}
https://github.com/Karutoh/MinimalExamples/tree/master/MisinterpretedConstructor