Files
kotlin-fork/idea/testData/intentions/implementAbstractMember/function/enumEntries.kt.after
T

19 lines
637 B
Plaintext
Vendored

// WITH_RUNTIME
//DISABLE-ERRORS
enum class E {
A {
override fun foo(x: Int): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}, B {
override fun foo(x: Int): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}, C {
override fun foo(x: Int): Int {
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
}
};
abstract fun foo(x: Int): Int
}