aeefdffaab
#KT-8427 Fixed
9 lines
113 B
Kotlin
Vendored
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
|
|
} |