mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Clear local (but non-argument) variables in OP_ENTER.
Otherwise, the following script prints an uninitialized value.
def f(*a)
if false
b = 15
end
p b
end
f(1,2,3)
This commit is contained in: