Files
kotlin-fork/idea/testData/intentions/moveToCompanion/propertyWithOverride.kt
T
Alexey Sedunov d13ac6b5a4 Intentions: Move class member to companion object
#KT-9697 In Progress
2016-02-04 12:26:18 +03:00

9 lines
110 B
Kotlin
Vendored

// IS_APPLICABLE: false
interface A {
val foo: Int
}
class B: A {
override val <caret>foo: Int = 1
}