Hi. I probably misunderstand something. But why `b...
# announcements
v
Hi. I probably misunderstand something. But why
break
is not allowed in inline function call below? Shouldn't it be "inlined", so ther's no function boundary?
Copy code
fun tetete() {
    while (true) {
        123.let {break} // Error: `break` or `continue` jumps across a function or a class boundary
        // 123.let {return} // This works... it apparently doesn't jump across anything
    }
}