summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm2_struct_small_aref.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm2_struct_small_aref.rb')
-rw-r--r--benchmark/bm_vm2_struct_small_aref.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/benchmark/bm_vm2_struct_small_aref.rb b/benchmark/bm_vm2_struct_small_aref.rb
deleted file mode 100644
index 8eaa555b41..0000000000
--- a/benchmark/bm_vm2_struct_small_aref.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-s = Struct.new(:a, :b, :c)
-x = s.new
-i = 0
-while i<6_000_000 # benchmark loop 2
- i += 1
- x.a
-end