Files
kotlin-fork/idea/testData/intentions/implementAbstractMember/property/enumEntriesWithArgs.kt.after
T
2019-11-13 08:37:25 +09:00

16 lines
394 B
Plaintext
Vendored

// WITH_RUNTIME
//DISABLE-ERRORS
enum class E(n: Int) {
A(1) {
override val foo: Int
get() = TODO("Not yet implemented")
}, B(2) {
override val foo: Int
get() = TODO("Not yet implemented")
}, C(3) {
override val foo: Int
get() = <caret><selection>TODO("Not yet implemented")</selection>
};
abstract val foo: Int
}