From 9a5fefbe03996d198306f81f5ba25e6b59ee25cd Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 12 Jan 2017 05:43:00 +0000 Subject: compile.c: invalid yield in main * compile.c (iseq_compile_each): yield cannot be in the main context as well as a top context. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index 3bcd1fc5ea..9b0fbfa986 100644 --- a/compile.c +++ b/compile.c @@ -5530,7 +5530,8 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *const ret, NODE *node, int poppe struct rb_call_info_kw_arg *keywords = NULL; INIT_ANCHOR(args); - if (iseq->body->type == ISEQ_TYPE_TOP) { + if (iseq->body->type == ISEQ_TYPE_TOP || + iseq->body->type == ISEQ_TYPE_MAIN) { COMPILE_ERROR(ERROR_ARGS "Invalid yield"); goto ng; } -- cgit v1.2.3