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

14 lines
202 B
Kotlin

// !CHECK_TYPE
import kotlin.reflect.KMemberFunction0
class A<T>(val t: T) {
fun foo(): T = t
}
fun bar() {
val x = A<String>::foo
checkSubtype<KMemberFunction0<A<String>, String>>(x)
}