summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_attr_ivar.rb
blob: 16906f3605a3ac0045410071d8a36cf5357fe374 (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