aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_vm2_module_const_set.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm2_module_const_set.rb')
-rw-r--r--benchmark/bm_vm2_module_const_set.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/benchmark/bm_vm2_module_const_set.rb b/benchmark/bm_vm2_module_const_set.rb
new file mode 100644
index 0000000000..f4d4c1b2e7
--- /dev/null
+++ b/benchmark/bm_vm2_module_const_set.rb
@@ -0,0 +1,8 @@
+i = 0
+module M
+end
+$VERBOSE = nil
+while i<6_000_000 # benchmark loop 2
+ i += 1
+ M.const_set(:X, Module.new)
+end