You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/lua-5.3.1-tests/bug.lua

8 lines
165 B

function x()
local IX
if ((10 or true) and false) then IX = true end; return ((10 or true) and false)
end
ravi.dumplua(x)
ravi.compile(x,1)
assert(x() == false)