summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_blockparam_call.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm1_blockparam_call.rb')
-rwxr-xr-xbenchmark/bm_vm1_blockparam_call.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/benchmark/bm_vm1_blockparam_call.rb b/benchmark/bm_vm1_blockparam_call.rb
new file mode 100755
index 0000000000..f6102a2b5a
--- /dev/null
+++ b/benchmark/bm_vm1_blockparam_call.rb
@@ -0,0 +1,9 @@
+def m &b
+ b.call
+end
+
+i = 0
+while i<30_000_000 # while loop 1
+ i += 1
+ m{}
+end