mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
Leave only 3*2 = 6 classes: KProperty0, KProperty1, KProperty2 and their mutable analogs, depending on the number of receivers a property takes
17 lines
303 B
Kotlin
Vendored
17 lines
303 B
Kotlin
Vendored
// !CHECK_TYPE
|
|
|
|
import kotlin.reflect.KProperty1
|
|
|
|
class A<T>(val t: T) {
|
|
val foo: T = t
|
|
}
|
|
|
|
fun bar() {
|
|
val x = A<String>::foo
|
|
checkSubtype<KProperty1<A<String>, String>>(x)
|
|
checkSubtype<KProperty1<A<String>, Any?>>(x)
|
|
|
|
val y = A<*>::foo
|
|
checkSubtype<KProperty1<A<*>, Any?>>(y)
|
|
}
|