Files
kotlin/compiler/testData/codegen/box/callableReference/local/constructor.kt
Alexander Udalov 363fe607fc Support local function references in codegen
#KT-3704 In Progress
 #KT-1183 In Progress
2013-12-24 20:41:19 +04:00

8 lines
95 B
Kotlin

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