889b136a68
Do not generate delegation from multi-file facade to inline-only functions because they are effectively private in bytecode #KT-10858 Fixed
8 lines
132 B
Kotlin
Vendored
8 lines
132 B
Kotlin
Vendored
import a.foo
|
|
import a.inlineOnly
|
|
|
|
fun box(): String {
|
|
if (!a.inlineOnly<String>("OK")) return "fail 1"
|
|
return foo { "OK" }
|
|
}
|