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