mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
12 lines
139 B
Kotlin
Vendored
12 lines
139 B
Kotlin
Vendored
class A
|
|
|
|
fun box(): String {
|
|
var result = "Fail"
|
|
|
|
fun A.ext() { result = "OK" }
|
|
|
|
val f = A::ext
|
|
f(A())
|
|
return result
|
|
}
|