// !LANGUAGE: -BoundCallableReferences class C { companion object } val ok1 = C::hashCode val fail1 = C.Companion::hashCode object O val fail2 = O::hashCode fun hashCode() {} val fail3 = ""::hashCode val fail4 = (C)::hashCode val fail5 = (C.Companion)::hashCode