Files
kotlin-fork/compiler/testData/cli/jvm/nonLocalDisabled.kt
T
Michael Bogdanov 5bca1d3c8f Added dianostic error for non-local return on disabled inlines,
Render bytecode diagnostics in BytecodeToolWindow

  #KT-5584 Fixed
2015-05-21 10:06:03 +03:00

13 lines
113 B
Kotlin
Vendored

fun a() {
c {
return
}
c {
return@a
}
}
inline fun c(p: () -> Unit) {
p()
}