prism
prism copied to clipboard
`a rescue b in c .method` and `a and b in c .method` is wrongly accepted
'a' rescue 2 => 3.upcase
#=> "A"
1 and 2 in 3.inspect
#=> "false"
'a' or 1 => 1 + 'b'
#=> "ab"