Consider the struct:
struct mystruct { };
Is it true that this is always valid:
constexpr mystruct mystructInstance = mystruct();
i.e. that value initialization of POD is a constexpr
? Similarly how about if the struct is defined to be:
struct mystruct { ~mystruct(); };
Finally, what about this:
struct mystruct { mystruct(); ~mystruct(); };
I haven't declared the ctr as constexpr, however are there any implicit deduction rules which guaratee this?
The requirements for
constexpr
variables are:Given your 3 structs:
mystruct_1
is aLiteralType
. So the following is valid and compiles:mystruct_2
is not aLiteralType
since it has a non-trivial destructor. Therefore the following is invalid and fails to compile:The same applies for
mystruct_3
, additionally it is not an aggregate and does not provide aconstexpr
constructor. So the following is also invalid and fails to compile:You can also have a look at the descriptive error messages in this online demo.