sm (Stefano Mioli)
- Login: sm
- Registered on: 07/21/2011
- Last sign in: 07/29/2011
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
07/22/2011
-
04:41 AM Ruby Bug #5068: Issue with "duplicated when clause is ignored"
- Thanks.
Well, I guess it boils down to deciding which between tolerating false positives or false negatives. -
12:06 AM Ruby Bug #5068 (Closed): Issue with "duplicated when clause is ignored"
- I'm filing this ticket as suggested by Ryan Davis here:
http://www.ruby-forum.com/topic/2154866#1011303
Let's consider this snippet:
x = 0
case x
when 1
when 0
when 1
end
Executing a file containing this co...