why do I get here <https://github.com/kotlin-graph...
# announcements
e
why do I get here https://github.com/kotlin-graphics/assimp/blob/master/src/main/kotlin/assimp/format/collada/ColladaParser.kt#L554 the following error at `continue`:
'break' or 'continue' jumps across a function or a class boundary
? Shouldn't be working because
let
is inlined?
p
https://kotlinlang.org/docs/reference/inline-functions.html
break and continue are not yet available in inlined lambdas, but we are planning to support them too.
e
forgot that, thanks