mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-06 15:53:19 +00:00
8 lines
113 B
Kotlin
Vendored
8 lines
113 B
Kotlin
Vendored
interface I
|
|
class C : I { fun foo() = super<I>.hashCode() }
|
|
|
|
fun box(): String {
|
|
C().foo()
|
|
return "OK"
|
|
}
|