Files
kotlin/compiler/testData/codegen/boxAgainstJava/functions/constructor.kt
2014-06-26 20:57:40 +04:00

7 lines
79 B
Kotlin
Vendored

fun box(): String {
A()
A("")
A(0.toLong(), 0.0)
return "OK"
}