summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/object/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_cases/deps/object/main.cpp')
-rw-r--r--tests/test_cases/deps/object/main.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_cases/deps/object/main.cpp b/tests/test_cases/deps/object/main.cpp
new file mode 100644
index 0000000..cfc2a4f
--- /dev/null
+++ b/tests/test_cases/deps/object/main.cpp
@@ -0,0 +1,8 @@
+#include "bar/bar.hpp"
+#include "foo/foo.hpp"
+#include <iostream>
+
+int main(int argc, char const *argv[]) {
+ std::cout << foo() << " " << bar() << std::endl;
+ return 0;
+}