- 
                Notifications
    You must be signed in to change notification settings 
- Fork 58
Open
Description
Overflows on 1.0.0-rc.5 and 0.19.0 with stacker, with no errors in release mode on either.
function f()
	local x = true
	do
		if x then
			x = false
		end
	end
endAnd the same for:
function f()
	for k, v in t do
		if v then
			
		end
	end
endIf it's helpful context, this variant doesn't overflow on 1.0.0-rc.5, or 0.19.0 with stacker, but does overflow on 0.19.0 without stacker.
function f()
	local x = {}
	if x then
		x = {}
	end
endFull code:
use full_moon;
fn main() {
    full_moon::parse("function f()
	local x = true
	do
		if x then
			x = false
		end
	end
end");
}Metadata
Metadata
Assignees
Labels
No labels