Removed other unused warning in typemaps.i and other places. Added Examples/lua/embed3, and run tests a few test cases. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10402 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
359 B
Lua
12 lines
359 B
Lua
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
|