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