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

9 lines
113 B
Kotlin
Vendored

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