[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / ScriptInterpreter / Lua / partial_statements.test
blobc83ff5e44351e97bcdf7e5173dbfa3dd24ce03ad
1 # RUN: %lldb -s %s --script-language lua 2>&1 | FileCheck %s
2 script
3 do
4 local a = 123
5 print(a)
6 end
7 # CHECK: 123
8 str = 'hello there!'
9 function callme()
10 print(str)
11 end
12 callme()
13 # CHECK: hello there!
14 # CHECK-NOT: error