summaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/interpreter_callback/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/API/python_api/interpreter_callback/main.c')
-rw-r--r--lldb/test/API/python_api/interpreter_callback/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/interpreter_callback/main.c b/lldb/test/API/python_api/interpreter_callback/main.c
new file mode 100644
index 000000000000..78d5c0714714
--- /dev/null
+++ b/lldb/test/API/python_api/interpreter_callback/main.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ int i = 1;
+ return i; // Break here
+}