-
-
Notifications
You must be signed in to change notification settings - Fork 942
Closed
sinatra/sinatra
#1198Labels
Milestone
Description
Here's a test case for irb:
class A
define_method 'проверка', lambda { p 'nunu' }
p instance_method 'проверка'
endFails with NameError: undefined method on JRuby-1.7.6
Pass ok on MRI and RBX
Here's a fix:
class A
define_method :'проверка', lambda { p 'nunu' }
p instance_method :'проверка'
end
For me it seems broken. JRuby 1.7.4 passed this test.
Reactions are currently unavailable