diff --git a/idea/testData/debugger/sequence/psi/collection/positive/types/NullableAnyToPrimitive.kt b/idea/testData/debugger/sequence/psi/collection/positive/types/NullableAnyToPrimitive.kt index 13f0f18c13b..d1077a9ea4e 100644 --- a/idea/testData/debugger/sequence/psi/collection/positive/types/NullableAnyToPrimitive.kt +++ b/idea/testData/debugger/sequence/psi/collection/positive/types/NullableAnyToPrimitive.kt @@ -1,3 +1,3 @@ fun main(args: Array) { - listOf(Any(), null).map { 10 }.contains(10) + listOf(Any(), null).map { true }.contains(false) } \ No newline at end of file