Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overridePrimitiveProperty.kt.after
T
Toshiaki Kameyama af941bfdf5 KT-18158 Expand selection should select the comment after expression getter on the same line (#1122)
* Expand selection should select the comment after expression getter on the same line #KT-18158 Fixed

* Fixed expand selection behavior for the declaration with comment #KT-18158

* Remove redundant code #KT-18158
2017-06-14 12:28:56 +02:00

29 lines
1.4 KiB
Plaintext
Vendored

interface T {
val a1: Byte
val a2: Short
val a3: Int
val a4: Long
val a5: Float
val a6: Double
val a7: Char
val a8: Boolean
}
class C : T {
override val a1: Byte
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
override val a2: Short
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
override val a3: Int
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
override val a4: Long
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
override val a5: Float
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
override val a6: Double
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
override val a7: Char
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
override val a8: Boolean
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
}