4d9b19da82
#KT-18539 Fixed
16 lines
394 B
Plaintext
Vendored
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
|
|
} |