56854a8b1a
1. NON_ABSTRACT_FUNCTION_WITH_NO_BODY 2. ABSTRACT_PROPERTY_IN_NON_ABSTRACT_CLASS 3. ABSTRACT_FUNCTION_IN_NON_ABSTRACT_CLASS
11 lines
259 B
Kotlin
Vendored
11 lines
259 B
Kotlin
Vendored
// "Make 'A' 'abstract'" "false"
|
|
// ACTION: Implement members
|
|
// ERROR: Class 'A' is not abstract and does not implement abstract member public abstract fun foo(): Unit defined in E
|
|
|
|
enum class E {
|
|
<caret>A;
|
|
|
|
abstract fun foo()
|
|
}
|
|
/* FIR_COMPARISON */
|