03641ffbee
#KT-8467 In Progress
16 lines
384 B
Plaintext
Vendored
16 lines
384 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
//DISABLE-ERRORS
|
|
enum class E {
|
|
A {
|
|
override val foo: Int
|
|
get() = throw UnsupportedOperationException()
|
|
}, B {
|
|
override val foo: Int
|
|
get() = throw UnsupportedOperationException()
|
|
}, C {
|
|
override val foo: Int
|
|
get() = throw UnsupportedOperationException()
|
|
};
|
|
|
|
abstract val <caret>foo: Int
|
|
} |