Fix for JRUBY-2882. Handle error messages related to constructors better
[jruby.git] / bench / yarv / bm_vm1_ivar.rb
blob4de833a31696692b27de4a84451aa833fd7471cb
1 @a = 1
3 i = 0
4 while i<30000000 # while loop 1
5   i+= 1
6   j = @a
7   k = @a
8 end