main.cpp 259 B

1234567891011121314151617
  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. TEST_STATIC_ASSERT(true);
  8. TEST_STATIC_ASSERT_MSG(true, "msg");
  9. int main()
  10. {
  11. return 0;
  12. }