Report unsupported on using underscored type argument if the corresponding feature is disabled

This commit is contained in:
Victor Petukhov
2021-10-27 11:24:04 +03:00
parent 8a99aa4b42
commit d1acb09add
3 changed files with 8 additions and 3 deletions
@@ -691,7 +691,7 @@ class PSICallResolver(
val typeReference = projection.typeReference ?: return@map TypeArgumentPlaceholder
if (typeReference.isPlaceholder && arePartiallySpecifiedTypeArgumentsEnabled) {
if (typeReference.isPlaceholder) {
val resolvedAnnotations = typeResolver.resolveTypeAnnotations(context.trace, context.scope, typeReference)
.apply(ForceResolveUtil::forceResolveAllContents)
@@ -700,6 +700,10 @@ class PSICallResolver(
context.trace.report(Errors.UNSUPPORTED.on(annotationElement, "annotations on an underscored type argument"))
}
if (!arePartiallySpecifiedTypeArgumentsEnabled) {
context.trace.report(Errors.UNSUPPORTED.on(typeReference, "underscored type argument"))
}
return@map TypeArgumentPlaceholder
}