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

22 lines
506 B
Plaintext
Vendored

interface Test {
public open fun test()
public open val testProp : Int
}
class SomeTest : Test {
val hello = 12
override fun test() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
}
override val testProp: Int
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
/**
* test
*/
fun some() {
}
}