summaryrefslogtreecommitdiff
path: root/tests/test2.lua
blob: 807e8619f57edf58a3a55941b032d3d33e9f238f (plain)
1
2
3
4
5
6
7
8
9
10
11
function test2()
    local i = Input.new "tests/test1.lua"
    i:open()
    i:close()
    i:destroy()

    i = Input.new "tests/test1.lua"
    i = nil

    collectgarbage()
end