Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideExtensionProperty.kt
T

8 lines
67 B
Kotlin

trait A {
val String.prop : Int
}
class B : A {
<caret>
}