Files
kotlin/compiler/testData/codegen/boxWithJava/callableReference/constructor.kt
Alexander Udalov 054e5fb5e7 Codegen for callable reference expressions
#KT-1183 In Progress
2013-04-22 17:59:32 +04:00

5 lines
56 B
Kotlin

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