summaryrefslogtreecommitdiffstats
path: root/languages/cpp/debugger/tests/two_module/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/debugger/tests/two_module/main.cpp')
-rw-r--r--languages/cpp/debugger/tests/two_module/main.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/languages/cpp/debugger/tests/two_module/main.cpp b/languages/cpp/debugger/tests/two_module/main.cpp
new file mode 100644
index 00000000..30863389
--- /dev/null
+++ b/languages/cpp/debugger/tests/two_module/main.cpp
@@ -0,0 +1,8 @@
+
+void foo(int);
+
+int main(int ac, char* av[])
+{
+ foo(5);
+ return 0;
+}