Files
kotlin-fork/idea/testData/inspectionsLocal/mayBeConstant/override.kt
T
2017-12-18 17:23:41 +03:00

9 lines
123 B
Kotlin
Vendored

// PROBLEM: none
interface Base {
val property: Int
}
object Derived : Base {
override val prop<caret>erty = 42
}