i = 0
class C
def m a
1
end
class CC < C
super
obj = CC.new
while i<6000000 # benchmark loop 2
obj.m 10
i+=1