Files
kotlin-fork/idea/idea-completion/testData/handlers/basic/override/ImplementVal.kt.after
T
2016-08-29 16:20:55 +03:00

11 lines
296 B
Plaintext
Vendored

interface I {
val someVal: String?
}
class A : I {
override val someVal: String?
get() = <caret><selection>TODO("not implemented")</selection> //To change initializer of created properties use File | Settings | File Templates.
}
// ELEMENT_TEXT: "override val someVal: String?"