There's actually a fairly big difference with the context of the language preventing the error.
If the code is wrong as in undefined behavior, then the compiler can and maybe should try to prevent it. If the programmer is wrong about the code, then the compiler can't and definitely shouldn't try to prevent it.
Its not the same. The compiler can protect against code which is incorrect. The compiler cannot do anything to help with code that is correct but does the wrong thing.
I would agree with you if the code would preprocessor-check ULONG_MAX and #error out if it isn’t the expected value.