Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/property.kt.after
T
2019-11-13 08:37:25 +09:00

9 lines
150 B
Plaintext
Vendored

interface T {
val v : Int
}
class GC() : T {
override val v: Int
get() = <selection><caret>TODO("Not yet implemented")</selection>
}