summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm2_case.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm2_case.rb')
-rw-r--r--benchmark/bm_vm2_case.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/benchmark/bm_vm2_case.rb b/benchmark/bm_vm2_case.rb
new file mode 100644
index 0000000000..efbd366ebb
--- /dev/null
+++ b/benchmark/bm_vm2_case.rb
@@ -0,0 +1,14 @@
+i=0
+while i<6000000 # while loop 2
+ case :foo
+ when :bar
+ raise
+ when :baz
+ raise
+ when :boo
+ raise
+ when :foo
+ i+=1
+ end
+end
+