Question

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')
Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top