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

9 lines
119 B
Kotlin
Vendored

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