instiki/vendor/plugins/maruku/miscs/bug.rb

4 lines
146 B
Ruby
Raw Normal View History

puts [].each do end # ok (equiv. to "puts nil")
[1].each do end # ok
puts [1].each do end # 3:in `each': no block given (LocalJumpError)