main.cpp 195 B

1234567891011121314
  1. #include "test_compiler_detection.h"
  2. #define PREFIX TEST
  3. #include "compile_tests.h"
  4. #ifdef TEST_COMPILER_C_STATIC_ASSERT
  5. #error Expect no C features defined
  6. #endif
  7. int main()
  8. {
  9. return 0;
  10. }