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