mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
11 lines
139 B
Kotlin
Vendored
11 lines
139 B
Kotlin
Vendored
import kotlin.reflect.KFunction0
|
|
|
|
fun main() {
|
|
class A
|
|
|
|
class B {
|
|
val x = ::A
|
|
val f: KFunction0<A> = x
|
|
}
|
|
}
|