318214b9d7
KT-4086 VerifyError creating anonymous object in constructor #KT-4086 Fixed
12 lines
124 B
Kotlin
12 lines
124 B
Kotlin
trait N
|
|
|
|
open class Base(n: N)
|
|
|
|
class Derived : Base(object: N{}) {
|
|
|
|
}
|
|
|
|
fun box() : String {
|
|
Derived()
|
|
return "OK"
|
|
} |