mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
13 lines
210 B
Kotlin
13 lines
210 B
Kotlin
class A {
|
|
fun o() = 111
|
|
fun k(k: Int) = k
|
|
}
|
|
|
|
fun A.foo() = this.(::o)() + this.(A::k)(222)
|
|
|
|
fun box(): String {
|
|
val result = A().foo()
|
|
if (result != 333) return "Fail $result"
|
|
return "OK"
|
|
}
|