Fix tail call argument handling.
This commit is contained in:
@@ -49,3 +49,14 @@ p()
|
|||||||
p("q")
|
p("q")
|
||||||
p("q","r")
|
p("q","r")
|
||||||
p("q","r","s")
|
p("q","r","s")
|
||||||
|
|
||||||
|
function first(...)
|
||||||
|
return 'abc'
|
||||||
|
end
|
||||||
|
|
||||||
|
function second( a, b, c )
|
||||||
|
return first( a, b, c )
|
||||||
|
end
|
||||||
|
|
||||||
|
print( 'second', second() )
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user