[FE 1.0] Implement checker to detect changed resolve for progressions and ranges due to the start of implementing Collection<T>
^KT-49276 Fixed
This commit is contained in:
committed by
teamcity
parent
4363667bc1
commit
7475d26902
@@ -248,6 +248,11 @@ enum class LanguageFeature(
|
||||
|
||||
ProhibitConfusingSyntaxInWhenBranches(KOTLIN_1_8, kind = BUG_FIX), // KT-48385
|
||||
UseConsistentRulesForPrivateConstructorsOfSealedClasses(sinceVersion = KOTLIN_1_8, kind = BUG_FIX), // KT-44866
|
||||
ProgressionsChangingResolve(KOTLIN_1_8), // KT-49276
|
||||
|
||||
// 1.9
|
||||
|
||||
DisableCheckingChangedProgressionsResolve(KOTLIN_1_9), // KT-49276
|
||||
|
||||
// Temporarily disabled, see KT-27084/KT-22379
|
||||
SoundSmartcastFromLoopConditionForLoopAssignedVariables(sinceVersion = null, kind = BUG_FIX),
|
||||
@@ -358,6 +363,7 @@ enum class LanguageVersion(val major: Int, val minor: Int) : DescriptionAware, L
|
||||
KOTLIN_1_6(1, 6),
|
||||
KOTLIN_1_7(1, 7),
|
||||
KOTLIN_1_8(1, 8),
|
||||
KOTLIN_1_9(1, 9),
|
||||
;
|
||||
|
||||
override val isStable: Boolean
|
||||
|
||||
Reference in New Issue
Block a user