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