Files
kotlin/compiler/testData/codegen/box/callableReference/function/privateClassMember.kt
2018-08-09 14:22:50 +03:00

8 lines
96 B
Kotlin
Vendored

class A {
private fun foo() = "OK"
fun bar() = (A::foo)(this)
}
fun box() = A().bar()