5bca1d3c8f
Render bytecode diagnostics in BytecodeToolWindow #KT-5584 Fixed
13 lines
113 B
Kotlin
Vendored
13 lines
113 B
Kotlin
Vendored
fun a() {
|
|
c {
|
|
return
|
|
}
|
|
|
|
c {
|
|
return@a
|
|
}
|
|
}
|
|
|
|
inline fun c(p: () -> Unit) {
|
|
p()
|
|
} |