Files
kotlin/compiler/testData/codegen/boxAgainstJava/callableReference/staticMethod.kt
2015-09-19 04:32:56 +03:00

6 lines
92 B
Kotlin
Vendored

fun box(): String {
val args = arrayOf("Fail")
(A::main)(args)
return args[0]
}