mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
15 lines
157 B
Kotlin
Vendored
15 lines
157 B
Kotlin
Vendored
// FILE: 1.kt
|
|
package test
|
|
|
|
class Z
|
|
|
|
class Q {
|
|
inline fun f(z: Z) = "OK"
|
|
}
|
|
|
|
// FILE: 2.kt
|
|
import test.*
|
|
|
|
fun box(): String {
|
|
return Z().run(Q()::f)
|
|
} |