diff options
Diffstat (limited to 'Examples/test-suite/lua/disown_runme.lua')
| -rw-r--r-- | Examples/test-suite/lua/disown_runme.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Examples/test-suite/lua/disown_runme.lua b/Examples/test-suite/lua/disown_runme.lua new file mode 100644 index 0000000..2707589 --- /dev/null +++ b/Examples/test-suite/lua/disown_runme.lua @@ -0,0 +1,12 @@ +require("import") -- the import fn +import("disown") -- import code + +-- catch "undefined" global variables +setmetatable(getfenv(),{__index=function (t,i) error("undefined global variable `"..i.."'",2) end}) + +for x=0,100 do + a=disown.A() + b=disown.B() + b:acquire(a) +end +collectgarbage() -- this will double delete unless the memory is managed properly |
