diff --git a/compiler/util/src/org/jetbrains/kotlin/config/LanguageVersionSettings.kt b/compiler/util/src/org/jetbrains/kotlin/config/LanguageVersionSettings.kt index 0256e706d43..214cb529349 100644 --- a/compiler/util/src/org/jetbrains/kotlin/config/LanguageVersionSettings.kt +++ b/compiler/util/src/org/jetbrains/kotlin/config/LanguageVersionSettings.kt @@ -125,12 +125,11 @@ enum class LanguageFeature( AllowReifiedGenericsInContracts(KOTLIN_1_4), ProperVisibilityForCompanionObjectInstanceField(KOTLIN_1_4, kind = BUG_FIX), DoNotGenerateThrowsForDelegatedKotlinMembers(KOTLIN_1_4), + ProperIeee754Comparisons(KOTLIN_1_4, kind = BUG_FIX), // Temporarily disabled, see KT-27084/KT-22379 SoundSmartcastFromLoopConditionForLoopAssignedVariables(sinceVersion = null, kind = BUG_FIX), - ProperIeee754Comparisons(sinceVersion = null, defaultState = State.DISABLED, kind = BUG_FIX), - // Experimental features Coroutines(