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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With