Any reason one cannot `continue` from within an in...
# announcements
s
Any reason one cannot
continue
from within an inline function like
Copy code
for (i in (1..2)) {
    run  { continue }  
}
Should it not be the same as
return
?
h
continue can only be used in while and for loops no?
s
Thats what I meant
k
Huh interesting. Does it work if you make it labeled?
e
It is not supported at the moment: https://youtrack.jetbrains.com/issue/KT-1436