1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
12 lines
162 B
Kotlin
12 lines
162 B
Kotlin
open class A private constructor() {
|
|
companion object : A() {
|
|
}
|
|
|
|
class B: A()
|
|
}
|
|
|
|
fun box(): String {
|
|
val a = A
|
|
val b = A.B()
|
|
return "OK"
|
|
} |