mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
8 lines
96 B
Kotlin
8 lines
96 B
Kotlin
class A {
|
|
private fun foo() = "OK"
|
|
|
|
fun bar() = this.(::foo)()
|
|
}
|
|
|
|
fun box() = A().bar()
|