summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp')
-rw-r--r--packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp b/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp
deleted file mode 100644
index c9d1ea14f17b9..0000000000000
--- a/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-int bar ()
-{
- return 5;
-}
-int foo ()
-{
- return bar() + 5;
-}
-int main ()
-{
- return foo();
-}