Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/constructorWithInitializer.kt
2018-06-28 12:26:41 +02:00

12 lines
183 B
Kotlin
Vendored

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