13 lines
184 B
Kotlin
13 lines
184 B
Kotlin
// "Remove parameter 'x'" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
open class Base() {
|
|
val y = Base();
|
|
|
|
fun f() {
|
|
val base = Base();
|
|
}
|
|
}
|
|
|
|
open class Inherited(x: Int) : Base() {}
|