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