summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_attr_ivar.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm1_attr_ivar.rb')
-rw-r--r--benchmark/bm_vm1_attr_ivar.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/benchmark/bm_vm1_attr_ivar.rb b/benchmark/bm_vm1_attr_ivar.rb
new file mode 100644
index 0000000000..6c39e20564
--- /dev/null
+++ b/benchmark/bm_vm1_attr_ivar.rb
@@ -0,0 +1,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