[Commonizer] Fix approximation for aliases types

This commit is contained in:
Dmitriy Dolovov
2021-01-28 00:54:13 +03:00
parent 4c640e3f81
commit e5aa772639
@@ -66,7 +66,7 @@ private fun StringBuilder.buildTypeSignature(type: KotlinType, exploredTypeParam
val abbreviation = (type as? AbbreviatedType)?.abbreviation ?: type
append(abbreviation.declarationDescriptor.classId!!.asString())
val arguments = type.arguments
val arguments = abbreviation.arguments
if (arguments.isNotEmpty()) {
append("<")
arguments.forEachIndexed { index, argument ->