aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--compile.c4
-rw-r--r--test/ruby/test_syntax.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/compile.c b/compile.c
index b2770c3221..e09e828c6f 100644
--- a/compile.c
+++ b/compile.c
@@ -5771,7 +5771,7 @@ iseq_compile_each0(rb_iseq_t *iseq, LINK_ANCHOR *const ret, NODE *node, int popp
const rb_iseq_t *parent_iseq = is->body->parent_iseq;
enum iseq_type parent_type;
- if (type == ISEQ_TYPE_TOP || type == ISEQ_TYPE_MAIN) {
+ if (type == ISEQ_TYPE_TOP) {
LABEL *splabel = NEW_LABEL(line);
ADD_LABEL(ret, splabel);
ADD_ADJUST(ret, line, 0);
@@ -5779,7 +5779,7 @@ iseq_compile_each0(rb_iseq_t *iseq, LINK_ANCHOR *const ret, NODE *node, int popp
ADD_INSN(ret, line, leave);
ADD_ADJUST_RESTORE(ret, splabel);
}
- else if ((type == ISEQ_TYPE_RESCUE || type == ISEQ_TYPE_ENSURE) &&
+ else if ((type == ISEQ_TYPE_RESCUE || type == ISEQ_TYPE_ENSURE || type == ISEQ_TYPE_MAIN) &&
parent_iseq &&
((parent_type = parent_iseq->body->type) == ISEQ_TYPE_TOP ||
parent_type == ISEQ_TYPE_MAIN)) {
diff --git a/test/ruby/test_syntax.rb b/test/ruby/test_syntax.rb
index eaebbcf1bf..57cc5b9611 100644
--- a/test/ruby/test_syntax.rb
+++ b/test/ruby/test_syntax.rb
@@ -986,7 +986,7 @@ eom
begin;
return; raise
begin return; rescue SystemExit; exit false; end
- begin return; ensure exit false; end
+ begin return; ensure puts "ensured"; end #=> ensured
begin ensure return; end
begin raise; ensure; return; end
begin raise; rescue; return; end