12 lines
156 B
Kotlin
Vendored
12 lines
156 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
import kotlin.reflect.KFunction0
|
|
|
|
fun main() {
|
|
class A
|
|
|
|
class B {
|
|
val x = ::A
|
|
val f: KFunction0<A> = x
|
|
}
|
|
}
|