23 lines
291 B
C
Raw Normal View History

2015-08-17 11:37:30 +02:00
#ifdef TEST_LANG_DEFINES
2016-07-09 11:21:54 +02:00
#ifdef CONSUMER_LANG_CXX
#error Unexpected CONSUMER_LANG_CXX
#endif
2015-08-17 11:37:30 +02:00
2016-07-09 11:21:54 +02:00
#ifndef CONSUMER_LANG_C
#error Expected CONSUMER_LANG_C
#endif
2015-08-17 11:37:30 +02:00
2016-07-09 11:21:54 +02:00
#if !LANG_IS_C
#error Expected LANG_IS_C
#endif
2015-08-17 11:37:30 +02:00
2016-07-09 11:21:54 +02:00
#if LANG_IS_CXX
#error Unexpected LANG_IS_CXX
#endif
2015-08-17 11:37:30 +02:00
#endif
void consumer_c()
{
}