cf741cb868
A set of compiler tests and some plugin tests changed accordingly. Compiler Kotlin code changed accordingly.
13 lines
212 B
Kotlin
Vendored
13 lines
212 B
Kotlin
Vendored
enum class E {
|
|
O
|
|
A {
|
|
override fun foo(n: Int, s: String): Int = n + 1
|
|
|
|
}
|
|
B {
|
|
override fun foo(n: Int, s: String): Int = n + 2
|
|
|
|
}
|
|
|
|
open fun foo(n: Int, s: String): Int = n
|
|
} |