Files
kotlin-fork/compiler/testData/ir/irText/expressions/boundCallableReferences.kt
T
2016-10-18 09:09:08 +03:00

13 lines
127 B
Kotlin
Vendored

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