Files
kotlin-fork/compiler/testData/codegen/box/super/interfaceHashCode.kt
T
2020-04-27 11:50:26 +03:00

9 lines
143 B
Kotlin
Vendored

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