Project

General

Profile

Actions

Bug #2468

closed

Array expansion inside case/when gives unexpected results

Added by romuloceccon (Rômulo Ceccon) over 14 years ago. Updated almost 13 years ago.

Status:
Closed
Assignee:
-
Target version:
ruby -v:
ruby 1.8.8dev (2009-12-07 revision 26034) [i386-mswin32_90]
[ruby-core:27116]

Description

=begin
Given the following script:

arr = [1, 2, 3]

case 2
when 1, 2, 3
puts "2 is in range #{arr.inspect}"
else
puts "2 is out of range #{arr.inspect}"
end

case 2
when *arr # this is the only thing different from the previous statement
puts "2 is in range #{arr.inspect}"
else
puts "2 is out of range #{arr.inspect}"
end

Ruby 1.8.8dev gives me the following output:

$ ruby -v
ruby 1.8.8dev (2009-12-07 revision 26034) [i386-mswin32_90]

$ ruby casebug.rb
2 is in range [1, 2, 3]
2 is out of range [1, 2, 3]

I'd expect the same results other versions give:

$ ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i386-mswin32_90]

$ ruby casebug.rb
2 is in range [1, 2, 3]
2 is in range [1, 2, 3]

$ ruby -v
ruby 1.9.1p129 (2009-05-12 revision 23412) [i386-mswin32]

$ ruby casebug.rb
2 is in range [1, 2, 3]
2 is in range [1, 2, 3]
=end


Related issues 3 (0 open3 closed)

Related to Ruby 1.8 - Bug #2555: "case n when *VALID" Broken in Ruby 1.8.8; affects Ruby on RailsClosed01/05/2010Actions
Related to Ruby master - Bug #2226: case 文の式が省略され when 節に配列展開があるときの挙動Closedmatz (Yukihiro Matsumoto)Actions
Has duplicate Ruby 1.8 - Bug #2551: case/when matches literal *[1,2,3] but not variable *aryClosed01/03/2010Actions
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0