mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
47cdda370e
For example, local variables in the following def: ```ruby def foo(a = (not_set = true), &block) ... end ``` should be `a, block, not_set`, but were `a, not_set, block`.