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