Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/constructor.kt
2019-11-19 11:00:09 +03:00

9 lines
125 B
Kotlin
Vendored

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