multi_files.cpp 269 B

1234567891011121314151617
  1. #include "multi_file_compiler_detection.h"
  2. #define PREFIX MULTI
  3. #include "compile_tests.h"
  4. #ifdef MULTI_COMPILER_C_STATIC_ASSERT
  5. #error Expect no C features defined
  6. #endif
  7. MULTI_STATIC_ASSERT(true);
  8. MULTI_STATIC_ASSERT_MSG(true, "msg");
  9. int main()
  10. {
  11. return 0;
  12. }