e079b8f425
#KT-2187 Fixed
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
|
|
}
|