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
220 B
Kotlin
Vendored
8 lines
220 B
Kotlin
Vendored
@file:[JvmName("MultifileClass") JvmMultifileClass]
|
|
package a
|
|
|
|
inline fun foo(body: () -> String): String = bar(body())
|
|
|
|
public fun bar(x: String): String = x
|
|
|
|
inline fun <reified T> inlineOnly(x: Any?): Boolean = x is T |