// FORCED class A { fun foo() { } override fun equals(other: Any?): Boolean{ if (this === other) return true if (other?.javaClass != javaClass) return false return true } override fun hashCode(): Int{ return 0 } }