Files
kotlin/compiler/testData/codegen/box/callableReference/local/constructorWithInitializer.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

11 lines
152 B
Kotlin

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