cf741cb868
A set of compiler tests and some plugin tests changed accordingly. Compiler Kotlin code changed accordingly.
11 lines
212 B
Kotlin
Vendored
11 lines
212 B
Kotlin
Vendored
package a.b.c.test.enum
|
|
|
|
enum class Enum {
|
|
// We have six entries in the following line,
|
|
// not one entry with five annotations
|
|
A B C D E F {
|
|
override fun f() = 4
|
|
}
|
|
|
|
open fun f() = 3
|
|
} |