mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
7 lines
100 B
Kotlin
Vendored
7 lines
100 B
Kotlin
Vendored
class A(val result: String)
|
|
|
|
fun box(): String {
|
|
val a = (::A).call("OK")
|
|
return a.result
|
|
}
|