summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/lint/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_cases/deps/lint/main.cpp')
-rw-r--r--tests/test_cases/deps/lint/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/test_cases/deps/lint/main.cpp b/tests/test_cases/deps/lint/main.cpp
new file mode 100644
index 0000000..7453eb9
--- /dev/null
+++ b/tests/test_cases/deps/lint/main.cpp
@@ -0,0 +1,9 @@
+#include "plain.hpp"
+
+#include <iostream>
+#include <ostream>
+
+int main(int argc, char **argv) {
+ std::cout << "result: " << foobar(1) << std::endl;
+ return 0;
+}