Files
kotlin-fork/idea/testData/intentions/implementAbstractMember/property/enumClass.kt.after
T
2015-12-25 18:50:37 +03:00

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()
}