aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/ScriptInterpreter/Lua/partial_statements.test
blob: c83ff5e44351e97bcdf7e5173dbfa3dd24ce03ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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