We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Compiler Explorer
// [clang] error: initializer element is not a compile-time constant // [ gcc ] ok /* const */ size_t i; static_assert (!! sizeof ((size_t) {i})); // OK struct { static_assert (!! sizeof ((size_t) {i})); }; // KO