Files
kotlin-fork/compiler/testData/ir/irText/expressions/boundCallableReferences.kt.txt
T
2020-11-26 00:14:25 +03:00

32 lines
315 B
Plaintext
Vendored

class A {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun foo() {
}
val bar: Int
field = 0
get
}
fun A.qux() {
}
val test1: KFunction0<Unit>
field = ::foo
get
val test2: KProperty0<Int>
field = ::bar
get
val test3: KFunction0<Unit>
field = ::qux
get