diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp')
-rw-r--r-- | packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp b/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp new file mode 100644 index 0000000..c9d1ea1 --- /dev/null +++ b/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp @@ -0,0 +1,12 @@ +int bar () +{ + return 5; +} +int foo () +{ + return bar() + 5; +} +int main () +{ + return foo(); +} |