Delay EnhanceNullabilityOfPrimitiveArrays to version 2.0

See KT-54521
This commit is contained in:
Mikhail Glukhikh
2023-02-09 13:59:34 +01:00
committed by Space Team
parent 2ad567e14c
commit 7d8a1e9c1c
11 changed files with 112 additions and 111 deletions
@@ -275,7 +275,6 @@ enum class LanguageFeature(
ForbidSuperDelegationToAbstractFakeOverride(KOTLIN_1_9, kind = BUG_FIX), // KT-49017
DataObjects(KOTLIN_1_9), // KT-4107
ProhibitAccessToEnumCompanionMembersInEnumConstructorCall(KOTLIN_1_9, kind = BUG_FIX), // KT-49110
EnhanceNullabilityOfPrimitiveArrays(KOTLIN_1_9, kind = BUG_FIX), // KT-54521
RefineTypeCheckingOnAssignmentsToJavaFields(KOTLIN_1_9, kind = BUG_FIX), // KT-46727
ReferencesToSyntheticJavaProperties(KOTLIN_1_9), // KT-8575
ValueClassesSecondaryConstructorWithBody(sinceVersion = KOTLIN_1_9, kind = UNSTABLE_FEATURE), // KT-55333
@@ -285,6 +284,8 @@ enum class LanguageFeature(
// 2.0
EnhanceNullabilityOfPrimitiveArrays(KOTLIN_2_0, kind = BUG_FIX), // KT-54521
// End of 2.* language features --------------------------------------------------
// This feature effectively might be removed because we decided to disable it until K2 and there it will be unconditionally enabled.