Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/callableReference/function/genericClassFromTopLevel.kt
T
2015-04-29 16:33:24 +02: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)
}