4d9b19da82
#KT-18539 Fixed
12 lines
208 B
Plaintext
Vendored
12 lines
208 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// DISABLE-ERRORS
|
|
interface T<X> {
|
|
val foo: X
|
|
}
|
|
|
|
enum class E : T<Int> {
|
|
A, B, C;
|
|
|
|
override val foo: Int
|
|
get() = <caret><selection>TODO("Not yet implemented")</selection>
|
|
} |