Files
kotlin/compiler/testData/codegen/box/super/interfaceHashCode.kt
Alexander Udalov bd4d9491ba Switch default JVM target to 1.8
#KT-29405 Fixed

(cherry picked from commit d022bb0248)
2021-02-01 11:57:02 +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"
}