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

11 lines
133 B
Kotlin
Vendored

// !CHECK_TYPE
import kotlin.reflect.KFunction0
fun main() {
class A
val x = ::A
checkSubtype<KFunction0<A>>(x)
}