summaryrefslogtreecommitdiff
path: root/Tests/InterfaceLinkLibraries/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/InterfaceLinkLibraries/main.cpp')
-rw-r--r--Tests/InterfaceLinkLibraries/main.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/Tests/InterfaceLinkLibraries/main.cpp b/Tests/InterfaceLinkLibraries/main.cpp
index a54076a75..6e1295a10 100644
--- a/Tests/InterfaceLinkLibraries/main.cpp
+++ b/Tests/InterfaceLinkLibraries/main.cpp
@@ -11,9 +11,13 @@
#error Unexpected BANG_LIBRARY
#endif
-#include "bar.h"
+#ifdef ZOT_LIBRARY
+#error Unexpected ZOT_LIBRARY
+#endif
+
+#include "zot.h"
int main(void)
{
- return foo() + bar();
+ return foo() + bar() + zot();
}