diff options
Diffstat (limited to '')
-rw-r--r-- | testes/attrib.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testes/attrib.lua b/testes/attrib.lua index b1076c76..83821c06 100644 --- a/testes/attrib.lua +++ b/testes/attrib.lua | |||
@@ -434,6 +434,16 @@ a.aVeryLongName012345678901234567890123456789012345678901234567890123456789 == | |||
434 | 10) | 434 | 10) |
435 | 435 | ||
436 | 436 | ||
437 | do | ||
438 | -- _ENV constant | ||
439 | local function foo () | ||
440 | local _ENV <const> = 11 | ||
441 | X = "hi" | ||
442 | end | ||
443 | local st, msg = pcall(foo) | ||
444 | assert(not st and string.find(msg, "number")) | ||
445 | end | ||
446 | |||
437 | 447 | ||
438 | -- test of large float/integer indices | 448 | -- test of large float/integer indices |
439 | 449 | ||