Files
kotlin-fork/idea/testData/intentions/implementAbstractMember/function/enumClassWithSemicolonAndMembers.kt.after
T
2019-11-13 08:37:25 +09:00

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>
}
}