summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_attr_ivar.rb
blob: 6c39e20564d35c57d1cd7e99ea146583500d28fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class C
  attr_reader :a, :b
  def initialize
    @a = nil
    @b = nil
  end
end
obj = C.new
i = 0
while i<30_000_000 # while loop 1
  i+= 1
  j = obj.a
  k = obj.b
end