Delay abstract class member forbiddance (see KT-45508) to 1.7

This commit is contained in:
Mikhail Glukhikh
2021-09-24 09:06:37 +03:00
committed by TeamCityServer
parent 4f7103b2a1
commit 363680e4c9
2 changed files with 2 additions and 1 deletions
@@ -1,4 +1,5 @@
// FIR_IDENTICAL
// !LANGUAGE: +AbstractClassMemberNotImplementedWithIntermediateAbstractClass
interface A {
fun foo(): Any
}
@@ -201,7 +201,6 @@ enum class LanguageFeature(
ForbidUsingExtensionPropertyTypeParameterInDelegate(KOTLIN_1_6, kind = BUG_FIX),
ProhibitSelfCallsInNestedObjects(KOTLIN_1_6, kind = BUG_FIX),
ProperCheckAnnotationsTargetInTypeUsePositions(KOTLIN_1_6, kind = BUG_FIX),
AbstractClassMemberNotImplementedWithIntermediateAbstractClass(KOTLIN_1_6, kind = BUG_FIX),
SuspendFunctionAsSupertype(KOTLIN_1_6),
UnrestrictedBuilderInference(KOTLIN_1_6),
@@ -230,6 +229,7 @@ enum class LanguageFeature(
SafeCallsAreAlwaysNullable(KOTLIN_1_7),
ApproximateIntegerLiteralTypesInReceiverPosition(KOTLIN_1_7),
StopPropagatingDeprecationThroughOverrides(KOTLIN_1_7),
AbstractClassMemberNotImplementedWithIntermediateAbstractClass(KOTLIN_1_7, kind = BUG_FIX),
// Temporarily disabled, see KT-27084/KT-22379
SoundSmartcastFromLoopConditionForLoopAssignedVariables(sinceVersion = null, kind = BUG_FIX),