Files
kotlin/compiler/testData/diagnostics/tests/callableReference/function/localConstructorFromLocalClass.kt
2015-05-26 14:27:40 +03:00

11 lines
139 B
Kotlin
Vendored

import kotlin.reflect.KFunction0
fun main() {
class A
class B {
val x = ::A
val f: KFunction0<A> = x
}
}