From: merch-redmine@... Date: 2019-07-05T23:54:30+00:00 Subject: [ruby-core:93572] [Ruby master Bug#11143] it should always be possible to return from an if Issue #11143 has been updated by jeremyevans0 (Jeremy Evans). Status changed from Open to Closed Fixed by commit:01b3a3804334be19d013526d3edde2b84399ae43. ---------------------------------------- Bug #11143: it should always be possible to return from an if https://bugs.ruby-lang.org/issues/11143#change-79150 * Author: bughit (bug hit) * Status: Closed * Priority: Normal * Assignee: * Target version: * ruby -v: * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN ---------------------------------------- ``` irb(main):001:0> def foo; a = if true then return end end SyntaxError: (irb):1: void value expression ``` it should not matter that you are not producing a value for the if expression, since you are leaving the method immediately. This should also apply to other jumps. -- https://bugs.ruby-lang.org/ Unsubscribe: