Files
kotlin-fork/idea/testData/quickfix/canBeParameter/usedInDerivedClass.kt
T
2016-04-11 16:32:26 +03:00

6 lines
130 B
Kotlin
Vendored

// "Remove 'val' from parameter" "true"
open class Base(open <caret>val x: Int) {
val y = x
}
class Derived(y: Int) : Base(y)