1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
11 lines
193 B
Kotlin
11 lines
193 B
Kotlin
// See also KT-6299
|
|
public open class Outer private constructor() {
|
|
companion object {
|
|
fun foo() = Outer()
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
val outer = Outer.foo()
|
|
return "OK"
|
|
} |