However, it shouldn't be, according to MRI. Example: ``` ruby foo = [1,2] if (a, b = foo) puts a puts b end ``` MRI: ``` % ruby ./t.rb ./t.rb:6: multiple assignment in conditional ``` JRuby 9k: ``` % ruby ./t.rb 1 2 ```
However, it shouldn't be, according to MRI.
Example:
MRI:
JRuby 9k: