Files
kotlin-fork/idea/testData/intentions/implementAbstractMember/property/enumClassWithSemicolonAndMembers.kt.after
T
2016-08-29 16:20:55 +03:00

16 lines
324 B
Plaintext
Vendored

// WITH_RUNTIME
// DISABLE-ERRORS
interface T<X> {
val foo: X
}
enum class E : T<Int> {
A, B, C;
override val foo: Int
get() = <caret><selection>TODO("not implemented")</selection> //To change initializer of created properties use File | Settings | File Templates.
val bar = 1
fun baz() = 2
}