mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
17 lines
242 B
Kotlin
Vendored
17 lines
242 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
package test
|
|
|
|
fun box() = MyEnum.E1.f() + MyEnum.E2.f()
|
|
|
|
enum class MyEnum : T {
|
|
E1 {
|
|
override fun f() = "O"
|
|
},
|
|
E2 {
|
|
override fun f() = "K"
|
|
}
|
|
}
|
|
|
|
interface T {
|
|
fun f(): String
|
|
} |