Temporary change sinceVersion to null for ProhibitVarargAsArrayAfterSamArgument

It will be set to `KOTLIN_1_5` as it will be added.
This commit is contained in:
Victor Petukhov
2020-01-17 19:03:52 +03:00
parent 38feadcfe8
commit 68576da494
@@ -116,7 +116,6 @@ enum class LanguageFeature(
ProhibitNonReifiedArraysAsReifiedTypeArguments(KOTLIN_1_4, kind = BUG_FIX),
ProhibitProtectedCallFromInline(KOTLIN_1_4, kind = BUG_FIX),
ProperFinally(KOTLIN_1_4, kind = BUG_FIX),
ProhibitVarargAsArrayAfterSamArgument(KOTLIN_1_4, kind = BUG_FIX),
AllowAssigningArrayElementsToVarargsInNamedFormForFunctions(KOTLIN_1_4),
AllowNullOperatorsForResult(KOTLIN_1_4),
AllowResultInReturnType(KOTLIN_1_4),
@@ -130,6 +129,9 @@ enum class LanguageFeature(
// Temporarily disabled, see KT-27084/KT-22379
SoundSmartcastFromLoopConditionForLoopAssignedVariables(sinceVersion = null, kind = BUG_FIX),
// TODO: set `sinceVersion` to KOTLIN_1_5
ProhibitVarargAsArrayAfterSamArgument(sinceVersion = null, kind = BUG_FIX),
// Experimental features
Coroutines(