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