A workaround I've used before is something like:


#define COMPILE_ASSERT(_cond) typedef char _Dummy[(_cond)]

Then you'd use it like:



int main()