artgreen/lua-iigs

Infinite recursion of coroutines not being recognized

Opened this issue · 0 comments

coroutine.lua line 490:
-- infinite recursion of coroutines
a = function(a) coroutine.wrap(a)(a) end
--TODO: below hangs
--assert(not pcall(a, a))