summaryrefslogtreecommitdiff
path: root/benchmark/bm_app_raise.rb
blob: e7b5e3ae033b69c155e9d6d2c2aed18aef5d0e8b (plain)
1
2
3
4
5
6
7
8
i = 0
while i<300000
  i+=1
  begin
    raise
  rescue
  end
end