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