03641ffbee
#KT-8467 In Progress
16 lines
231 B
Plaintext
Vendored
16 lines
231 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()
|
|
|
|
val bar = 1
|
|
|
|
fun baz() = 2
|
|
} |