Files
kotlin-fork/idea/testData/intentions/implementAbstractMember/property/enumEntries.kt
T
2015-12-25 18:50:37 +03:00

7 lines
96 B
Kotlin
Vendored

// WITH_RUNTIME
//DISABLE-ERRORS
enum class E {
A, B, C;
abstract val <caret>foo: Int
}