Files
kotlin-fork/idea/testData/intentions/implementAsConstructorParameter/enumClass.kt.after
T
2018-09-18 11:50:42 +03:00

9 lines
136 B
Plaintext
Vendored

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