Files
kotlin/compiler/testData/codegen/boxWithStdlib/reflection/call/simpleConstructor.kt
Alexander Udalov e079b8f425 Support KCallable.call
#KT-2187 Fixed
2015-07-29 21:36:42 +03:00

7 lines
100 B
Kotlin
Vendored

class A(val result: String)
fun box(): String {
val a = (::A).call("OK")
return a.result
}