Files
kotlin-fork/compiler/testData/codegen/box/privateConstructors/captured.kt
T
2020-03-10 15:19:34 +03:00

10 lines
182 B
Kotlin
Vendored

public open class Outer private constructor(val s: String) {
companion object {
fun test () = { Outer("OK") }()
}
}
fun box(): String {
return Outer.test().s
}