mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
9 lines
143 B
Kotlin
Vendored
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"
|
|
}
|