Files
kotlin-fork/compiler/testData/codegen/box/super/interfaceHashCode.kt
T
Alexander Udalov d022bb0248 Switch default JVM target to 1.8
#KT-29405 Fixed
2021-02-01 11:54:04 +01:00

8 lines
113 B
Kotlin
Vendored

interface I
class C : I { fun foo() = super<I>.hashCode() }
fun box(): String {
C().foo()
return "OK"
}