18 lines
269 B
C++
Raw Normal View History

2015-04-27 22:25:09 +02:00
#include "multi_file_compiler_detection.h"
#define PREFIX MULTI
#include "compile_tests.h"
#ifdef MULTI_COMPILER_C_STATIC_ASSERT
#error Expect no C features defined
#endif
2017-07-20 19:35:53 +02:00
MULTI_STATIC_ASSERT(true);
MULTI_STATIC_ASSERT_MSG(true, "msg");
2015-04-27 22:25:09 +02:00
int main()
{
return 0;
}