45 lines
727 B
C++
Raw Normal View History

2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
#include "consumer.h"
2013-03-16 19:13:01 +02:00
#include "common.h"
#include "interfaceinclude.h"
2016-07-09 11:21:54 +02:00
#include "publicinclude.h"
2013-03-16 19:13:01 +02:00
#include "relative_dir.h"
2015-08-17 11:37:30 +02:00
#ifdef TEST_LANG_DEFINES
2016-07-09 11:21:54 +02:00
#include "cxx_only.h"
2015-08-17 11:37:30 +02:00
#endif
2013-03-16 19:13:01 +02:00
#ifdef PRIVATEINCLUDE_DEFINE
#error Unexpected PRIVATEINCLUDE_DEFINE
#endif
#ifndef PUBLICINCLUDE_DEFINE
#error Expected PUBLICINCLUDE_DEFINE
#endif
#ifndef INTERFACEINCLUDE_DEFINE
#error Expected INTERFACEINCLUDE_DEFINE
#endif
#ifndef CURE_DEFINE
#error Expected CURE_DEFINE
#endif
#ifndef RELATIVE_DIR_DEFINE
#error Expected RELATIVE_DIR_DEFINE
#endif
2014-08-03 19:52:23 +02:00
#ifndef CONSUMER_DEFINE
#error Expected CONSUMER_DEFINE
#endif
2015-08-17 11:37:30 +02:00
#ifdef TEST_LANG_DEFINES
2016-07-09 11:21:54 +02:00
#ifndef CXX_ONLY_DEFINE
#error Expected CXX_ONLY_DEFINE
#endif
2015-08-17 11:37:30 +02:00
#endif
2016-07-09 11:21:54 +02:00
int main()
{
return 0;
}