Files
kotlin/compiler/testData/codegen/box/privateConstructors/captured.kt
Michael Bogdanov 8198ac77cb Generate private constructor for object
#KT-9510 Fixed
2015-10-09 16:25:20 +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
}