Hi,
This might not be the right way to communicate this, but I think there’s been a regression in the top of tree. In the following the static_assert for Foo work fine but I get a compile error for the static_assert of the class Boo.
class Foo
{
};
static_assert(std::is_move_constructible::value, “Type is not move constructible.”);
class Boo
{
Boo(Boo&&) = default;
};
static_assert(std::is_move_constructible::value, “Type is not move constructible.”); // Compile error: static_assert failed “Type is not move constructible.”
Emmanuel