e6f4d6e6fa
^KT-65406
25 lines
282 B
Kotlin
Vendored
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() {
|
|
}
|
|
|
|
}
|
|
|