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