From: nobu@... Date: 2015-02-08T01:48:35+00:00 Subject: [ruby-core:68061] [Ruby trunk - Bug #10837] [Rejected] spatting a single element array produces an array instead of a single value for return and next Issue #10837 has been updated by Nobuyoshi Nakada. Status changed from Open to Rejected It's similar to `return *[1, 2]`. ---------------------------------------- Bug #10837: spatting a single element array produces an array instead of a single value for return and next https://bugs.ruby-lang.org/issues/10837#change-51447 * Author: bug hit * Status: Rejected * Priority: Normal * Assignee: * ruby -v: ruby 2.2.0p0 (2014-12-25 revision 49005) [x86_64-linux] * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN ---------------------------------------- irb(main):013:0> ->{return *[1]}.() => [1] irb(main):014:0> ->{next *[1]}.() => [1] ______________ *[x] should mean x as it already does for arguments -- https://bugs.ruby-lang.org/