Files
kotlin/compiler/testData/codegen/boxAgainstJava/callableReference/staticMethod.kt
Alexander Udalov cd0551078c Support static method references
#KT-5123 Fixed
2014-09-26 18:48:43 +04:00

6 lines
90 B
Kotlin
Vendored

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