summaryrefslogtreecommitdiff
path: root/benchmark/vm2_zsuper.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/vm2_zsuper.yml')
-rw-r--r--benchmark/vm2_zsuper.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/benchmark/vm2_zsuper.yml b/benchmark/vm2_zsuper.yml
new file mode 100644
index 0000000000..bde57beaad
--- /dev/null
+++ b/benchmark/vm2_zsuper.yml
@@ -0,0 +1,23 @@
+benchmark:
+ vm2_zsuper: |
+ i = 0
+
+ class C
+ def m a
+ 1
+ end
+ end
+
+ class CC < C
+ def m a
+ super
+ end
+ end
+
+ obj = CC.new
+
+ while i<6_000_000 # benchmark loop 2
+ obj.m 10
+ i += 1
+ end
+loop_count: 1