Edoardo Luppi
12/03/2024, 9:59 PM[ACTUAL_TYPE_ALIAS_WITH_COMPLEX_SUBSTITUTION] Type arguments in the right-hand side of actual type alias should be its type parameters in the same order, e. g. 'actual typealias Foo<A, B> = Bar<A, B>'
Happens when an actual typelias
aliases a type with generics, e.g.
public actual typealias ZByteArray = Uint8Array<*>
I thought this was allowed to be honest.