[FIR] Match ordering of type arguments with type parameters
This commit is contained in:
@@ -185,7 +185,7 @@ fun FirClassifierSymbol<*>.constructType(
|
||||
}
|
||||
|
||||
|
||||
private fun List<FirQualifierPart>.toTypeProjections(): Array<ConeTypeProjection> = flatMap {
|
||||
private fun List<FirQualifierPart>.toTypeProjections(): Array<ConeTypeProjection> = asReversed().flatMap {
|
||||
it.typeArguments.map { typeArgument ->
|
||||
when (typeArgument) {
|
||||
is FirStarProjection -> ConeStarProjection
|
||||
|
||||
Reference in New Issue
Block a user