Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/constructor.kt
2018-08-09 14:22:50 +03:00

8 lines
95 B
Kotlin
Vendored

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