Files
kotlin-fork/compiler/testData/ir/irText/expressions/callableReferences/genericMember.kt.txt
T
2024-02-16 10:19:38 +00:00

25 lines
282 B
Kotlin
Vendored

val test1: KFunction1<A<String>, Unit>
field = A::foo
get
val test2: KProperty1<A<String>, Int>
field = A::bar
get
class A<T : Any?> {
val bar: Int
field = 42
get
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun foo() {
}
}