質問

Is the following C++1y/C++14 program ill-formed?

template<class> constexpr auto X = 42;

int main()
{
        static_assert(X<int> == 42, "");
}

Why / why not?

Clang trunk complains that:

error: invalid operands to binary expression ('auto' and 'int')
役に立ちましたか?

解決

This was a bug in clang, it is now fixed: http://llvm.org/bugs/show_bug.cgi?id=19152

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top