3ffe495346
Anonymous objects inside of a private inline function nested in a public inline function can still escape.
11 lines
110 B
Kotlin
Vendored
11 lines
110 B
Kotlin
Vendored
package app
|
|
|
|
import lib.*
|
|
|
|
fun runAppAndReturnOk(): String {
|
|
foo {
|
|
"OK"
|
|
}
|
|
return result
|
|
}
|