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

12 lines
162 B
Kotlin
Vendored

open class A private constructor() {
companion object : A() {
}
class B: A()
}
fun box(): String {
val a = A
val b = A.B()
return "OK"
}