Files
kotlin-fork/idea/testData/intentions/implementAsConstructorParameter/enumClass.kt.after
T
2015-12-30 00:56:34 +03:00

9 lines
136 B
Plaintext
Vendored

// WITH_RUNTIME
// DISABLE-ERRORS
interface T<X> {
val <caret>foo: X
}
enum class E(override val foo: Int) : T<Int> {
A, B, C
}