Add 2 new test cases.

This commit is contained in:
Ian Farmer
2009-04-27 20:16:06 +00:00
parent 363ea0dfb1
commit fbaeec9fe7
3 changed files with 20 additions and 0 deletions

15
src/test/res/test9.lua Normal file
View File

@@ -0,0 +1,15 @@
local x
local function g()
local a, b, c
return a, b, c
end
local function f()
print("hello")
end
g()
x = ...
f()