62e856956c
The result of k1/k2 should be similar here, the differences should be fixed by KT-60764
18 lines
231 B
Kotlin
Vendored
18 lines
231 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
package a.b.c.test.enum
|
|
|
|
enum class Enum {
|
|
A, B, C, D, E, F {
|
|
override fun f() = 4
|
|
};
|
|
|
|
open fun f() = 3
|
|
|
|
companion object {
|
|
@Ann
|
|
val c: Int = 1
|
|
}
|
|
}
|
|
|
|
annotation class Ann
|