Files
clang-p2996/lldb/test/Shell/ScriptInterpreter/Lua/partial_statements.test
2021-07-09 13:25:10 -07:00

15 lines
215 B
Plaintext

# RUN: %lldb -s %s --script-language lua 2>&1 | FileCheck %s
script
do
local a = 123
print(a)
end
# CHECK: 123
str = 'hello there!'
function callme()
print(str)
end
callme()
# CHECK: hello there!
# CHECK-NOT: error