Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/property.kt.after
T
2016-08-29 16:20:55 +03:00

9 lines
230 B
Plaintext
Vendored

interface T {
val v : Int
}
class GC() : T {
override val v: Int
get() = <selection><caret>TODO("not implemented")</selection> //To change initializer of created properties use File | Settings | File Templates.
}