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

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