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

7 lines
121 B
Kotlin
Vendored

// WITH_RUNTIME
//DISABLE-ERRORS
enum class E(n: Int) {
A(1), B(2), C(3);
abstract fun <caret>foo(x: Int): Int
}