4d9b19da82
#KT-18539 Fixed
16 lines
347 B
Plaintext
Vendored
16 lines
347 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
//DISABLE-ERRORS
|
|
enum class E {
|
|
A {
|
|
override val foo: Int
|
|
get() = TODO("Not yet implemented")
|
|
}, B {
|
|
override val foo: Int
|
|
get() = TODO("Not yet implemented")
|
|
}, C {
|
|
override val foo: Int
|
|
get() = TODO("Not yet implemented")
|
|
};
|
|
|
|
abstract val foo: Int
|
|
} |