d022bb0248
#KT-29405 Fixed
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"
|
|
}
|