IC Mangling: Correctly mangle functions with generic return type
if the type's parent is inline class. #KT-43050 Fixed #KT-26130 Fixed #KT-32384 Fixed
This commit is contained in:
+1
-1
@@ -132,7 +132,7 @@ object InlineClassAbi {
|
||||
private fun IrType.asInfoForMangling(): InfoForMangling =
|
||||
InfoForMangling(
|
||||
erasedUpperBound.fqNameWhenAvailable!!.toUnsafe(),
|
||||
isInline = getClass()?.isInline == true,
|
||||
isInline = erasedUpperBound.isInline,
|
||||
isNullable = isNullable()
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user