summaryrefslogtreecommitdiff
path: root/testes/goto.lua
diff options
context:
space:
mode:
Diffstat (limited to 'testes/goto.lua')
-rw-r--r--testes/goto.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/testes/goto.lua b/testes/goto.lua
index 92f048fb..5d863a42 100644
--- a/testes/goto.lua
+++ b/testes/goto.lua
@@ -258,7 +258,7 @@ do
::L2:: goto L3
::L1:: do
- local scoped a = function () X = true end
+ local *toclose a = function () X = true end
assert(X == nil)
if a then goto L2 end -- jumping back out of scope of 'a'
end