13 lines
188 B
Plaintext
Vendored
13 lines
188 B
Plaintext
Vendored
// "Remove parameter 'x'" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
open class Base() {
|
|
val y = Base();
|
|
|
|
fun f() {
|
|
val base = Base(1, 2);
|
|
}
|
|
}
|
|
|
|
open class Inherited(x: Int) : Base() {}
|