Project

General

Profile

Bug #15720 » bug.rb

chocolateboy (Chocolate Boy), 03/21/2019 08:07 PM

 
module M1
refine Kernel do
def foo
'foo called!'
end
end
end

module M2
refine Kernel do
def bar
'bar called!'
end
end
end

using M1

puts foo
puts bar
(1-1/2)