Files
kotlin-fork/backend.native/tests/external/codegen/box/privateConstructors/captured.kt
T
2017-03-13 15:31:46 +03:00

10 lines
182 B
Kotlin

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