// FIR_IDENTICAL // WITH_STDLIB // !DIAGNOSTICS: -DEBUG_INFO_SMARTCAST // LANGUAGE: +CustomEqualsInValueClasses @JvmInline value class IC1(val x: Int) { override fun equals(other: Any?): Boolean { if (other !is IC1) { return false } return x == other.x } } @JvmInline value class IC2(val x: Int) { override fun hashCode() = 0 } @JvmInline value class IC3(val x: Int) { override fun equals(other: Any?) = true operator fun equals(other: IC3) = true override fun hashCode() = 0 } @JvmInline value class IC4(val x: Int) { override fun equals(other: Any?) = true fun equals(other: IC4) = true override fun hashCode() = 0 }