16 lines
165 B
C++
Raw Normal View History

2013-11-03 12:27:13 +02:00
#ifdef BAR_LIBRARY
2018-08-09 18:06:22 +02:00
# error Unexpected BAR_LIBRARY
2013-11-03 12:27:13 +02:00
#endif
#ifdef BANG_LIBRARY
2018-08-09 18:06:22 +02:00
# error Unexpected BANG_LIBRARY
2013-11-03 12:27:13 +02:00
#endif
#include "foo.h"
int foo()
{
return 0;
}