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