Actions
Bug #7592
closedCan not continue after SystemStackError
Description
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
Actions
Like0
Like0Like0Like0