Files
kotlin-fork/idea/testData/intentions/implementAbstractMember/property/enumEntriesWithArgs.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

16 lines
634 B
Plaintext
Vendored

// WITH_RUNTIME
//DISABLE-ERRORS
enum class E(n: Int) {
A(1) {
override val foo: Int
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
}, B(2) {
override val foo: Int
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
}, C(3) {
override val foo: Int
get() = <caret><selection>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
};
abstract val foo: Int
}