summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/benchmark/bm_vm2_super.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/benchmark/bm_vm2_super.rb')
-rw-r--r--ruby_1_9_3/benchmark/bm_vm2_super.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/ruby_1_9_3/benchmark/bm_vm2_super.rb b/ruby_1_9_3/benchmark/bm_vm2_super.rb
deleted file mode 100644
index d4f0b647de..0000000000
--- a/ruby_1_9_3/benchmark/bm_vm2_super.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-
-class C
- def m
- 1
- end
-end
-
-class CC < C
- def m
- super()
- end
-end
-
-obj = CC.new
-
-i = 0
-while i<6_000_000 # benchmark loop 2
- obj.m
- i+=1
-end