FE 1.0: report TYPE_VARIANCE_CONFLICT also on qualifier type arguments

#KT-51439 Fixed
This commit is contained in:
Mikhail Glukhikh
2022-02-22 13:15:59 +03:00
committed by Space
parent fdb01d96f0
commit 7781413a93
15 changed files with 224 additions and 17 deletions
@@ -269,6 +269,7 @@ enum class LanguageFeature(
ForbidExtensionFunctionTypeOnNonFunctionTypes(KOTLIN_1_9), // related to KT-43527
ProhibitEnumDeclaringClass(KOTLIN_1_9, kind = BUG_FIX), // KT-49653
StopPropagatingDeprecationThroughOverrides(KOTLIN_1_9, kind = BUG_FIX), // KT-47902
ReportTypeVarianceConflictOnQualifierArguments(KOTLIN_1_9, kind = BUG_FIX), // KT-50947
// Disabled for indefinite time. See KT-48535 and related discussion
ApproximateIntegerLiteralTypesInReceiverPosition(sinceVersion = null),