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

9 lines
121 B
Kotlin
Vendored

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