Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/property.kt.after
T
2021-05-07 00:40:41 +03:00

10 lines
167 B
Plaintext
Vendored

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