Is there an issue for this error somewhere in YT? ...
# compiler
e
Is there an issue for this error somewhere in YT?
Copy code
[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.
Copy code
public actual typealias ZByteArray = Uint8Array<*>
I thought this was allowed to be honest.