During the review of D50719, I said:
The presence/absence of C11 features in the underlying C library does not depend on what version of the C++ language we're compiling with.
The tests that use TEXT_HAS_C11_XXX should be updated to check TEST_STD_VER instead.
This does that.
The detection of C11 features happens no matter what the language level is.
The enabling/disabling of the C++ features is done based on the language level.
Should we be using __ISO_C_VISIBLE here, or __STDC_VERSION__?
I didn't change this, but ...