6 lines
114 B
Plaintext
Vendored
6 lines
114 B
Plaintext
Vendored
// "Remove 'val' from parameter" "true"
|
|
open class Base(x: Int) {
|
|
val y = x
|
|
}
|
|
|
|
class Derived(y: Int) : Base(y) |