diff options
Diffstat (limited to 'lldb/test/expression_command/persistent_variables/main.c')
-rw-r--r-- | lldb/test/expression_command/persistent_variables/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/expression_command/persistent_variables/main.c b/lldb/test/expression_command/persistent_variables/main.c index 343eac7e554..fd41471df8e 100644 --- a/lldb/test/expression_command/persistent_variables/main.c +++ b/lldb/test/expression_command/persistent_variables/main.c @@ -9,5 +9,6 @@ int main (int argc, char const *argv[]) { - return 0; + int i = 5; + return 0; // Set breakpoint here } |