Files
kotlin-fork/compiler/testData/codegen/box/bridges/simpleEnum.kt
T
Nikolay Lunyak bcfafc601e Add EnumEntries to minimal-stdlib-for-tests
This change allows to revert adding `WITH_STDLIB` directive
to tests which happened at `a9343aeb`.

Co-authored-by: Alexander Udalov <Alexander.Udalov@jetbrains.com>
2023-03-02 10:23:38 +00:00

21 lines
462 B
Kotlin
Vendored

interface A<T> {
open fun foo(t: T) = "A"
}
enum class Z(val aname: String) : A<String> {
Z1("Z1"),
Z2("Z2");
override fun foo(t: String) = aname
}
fun box(): String {
return when {
Z.Z1.foo("") != "Z1" -> "Fail #1"
Z.Z2.foo("") != "Z2" -> "Fail #2"
(Z.Z1 as A<String>).foo("") != "Z1" -> "Fail #3"
(Z.Z2 as A<String>).foo("") != "Z2" -> "Fail #4"
else -> "OK"
}
}