Files
kotlin-fork/compiler/testData/ir/irText/expressions/boundCallableReferences.kt
T
Sergej Jaskiewicz 02180e8685 Factor out duplicated mangling logic for functions into the base class
^KT-57777 Fixed
^KT-57818 Fixed
2023-05-26 10:55:24 +00:00

15 lines
145 B
Kotlin
Vendored

// FIR_IDENTICAL
class A {
fun foo() {}
val bar = 0
}
fun A.qux() {}
val test1 = A()::foo
val test2 = A()::bar
val test3 = A()::qux