MSVC constexpr 编译器错误?

Mer*_*ime 5 c++ visual-c++ constexpr c++17

环境:VS 2019,v16.4.3 w/c++17 + 最新开关

以下代码标准是否正确,还是我做错了什么?它使用最新的 gcc/clang 编译器可以正常编译,但在 MSVC 上失败。(请参阅下面的错误消息)

template<typename T>
struct mixin {};

struct thing : mixin<thing>
{
    constexpr explicit thing(int value) : value_(value) {}

    constexpr int value() const { return value_; }

private:
    int value_ = 0;
};

template<typename T>
constexpr auto do_mixin_thing(mixin<T> const& m)
{
    return static_cast<T const&>(m).value() * 10;
}

int main()
{
    constexpr thing t1{ 10 };

    // this works
    static_assert(t1.value() == 10);

    // this fails
    static_assert(do_mixin_thing(t1) == 100);
}
Run Code Online (Sandbox Code Playgroud)

这是输出:

error C2131: expression did not evaluate to a constant

message : failure was caused by attempting to access a member on an object of dynamic type 'mixin<thing>' in which the member is not defined

message : see usage of 'thing::value_'

Run Code Online (Sandbox Code Playgroud)

错误指的是static_assert中的第二个main(),两条消息指的value()是 中的成员函数thing

看来static_castindo_mixin_thing()是导致问题的原因。我尝试将强制转换添加到mixinviaconstexpr T const& self() const { return static_cast<T const&>(*this); }但错误仍然存​​在。

Fed*_*dor 1

此问题已在 Visual Studio 2019 版本 16.9 中修复。演示: https: //gcc.godbolt.org/z/4Y94co6hW

感谢错误报告者:https://developercommunity.visualstudio.com/t/valid-static-cast-causing-a-constexpr-failure/908077