For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
The following should compile without any issues:
struct struct_with_double {
double x;
};
static_assert(std::is_nothrow_destructible<struct_with_double>::value, "YYY");
But does not. Any ideas?