summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_attr_ivar_set.rb
blob: 7e7a6b48c017ab006fff4b53b73e0362f51a7ae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class C
  attr_accessor :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
  obj.a = 1
  obj.b = 2
end