From 59acd79c05b78950fe03279d60b015aeed5348ab Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 11 Aug 2021 11:19:33 -0300 Subject: Added tests for string reuse by the scanner --- testes/errors.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testes/errors.lua') diff --git a/testes/errors.lua b/testes/errors.lua index a7dc479a..55bdab82 100644 --- a/testes/errors.lua +++ b/testes/errors.lua @@ -241,7 +241,7 @@ do -- named objects (field '__name') assert(o == x) return "ABC" end}) - a, b, c = T.testC("pushint 10; Ltolstring -2; return 3", x) + local a, b, c = T.testC("pushint 10; Ltolstring -2; return 3", x) assert(a == x and b == 10 and c == "ABC") end end -- cgit v1.2.3-55-g6feb