From: "ko1 (Koichi Sasada)" Date: 2012-12-25T22:30:54+09:00 Subject: [ruby-core:51130] [ruby-trunk - Bug #7592][Closed] Can not continue after SystemStackError Issue #7592 has been updated by ko1 (Koichi Sasada). Status changed from Assigned to Closed r38601 may solve this issue. ---------------------------------------- Bug #7592: Can not continue after SystemStackError https://bugs.ruby-lang.org/issues/7592#change-35066 Author: ko1 (Koichi Sasada) Status: Closed Priority: Normal Assignee: ko1 (Koichi Sasada) Category: core Target version: 2.0.0 ruby -v: ruby 2.0.0dev (2012-12-20 trunk 38476) [x86_64-linux] The following code can not continue after next line where SystemStackError is raised. def rec n=0 begin rec n+1 p n # it works rescue SystemStackError => e p e end end rec p :end # this line doesn't work -- http://bugs.ruby-lang.org/