9 lines
136 B
Plaintext
Vendored
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
|
|
} |