8 lines
144 B
Kotlin
Vendored
8 lines
144 B
Kotlin
Vendored
@file:[JvmName("Test") JvmMultifileClass]
|
|
package other
|
|
|
|
inline fun f(body: () -> Unit) {
|
|
println("i'm other inline function")
|
|
body()
|
|
}
|