cf741cb868
A set of compiler tests and some plugin tests changed accordingly. Compiler Kotlin code changed accordingly.
16 lines
215 B
Kotlin
Vendored
16 lines
215 B
Kotlin
Vendored
enum class <caret>E {
|
|
O
|
|
A {
|
|
override fun foo(n: Int): Int = n + 1
|
|
|
|
}
|
|
B {
|
|
override fun foo(n: Int): Int = n + 2
|
|
|
|
}
|
|
|
|
open fun foo(n: Int): Int = n
|
|
}
|
|
|
|
// REF: (E).A
|
|
// REF: (E).B |