<@U589QURRQ> As a workaround you can "pass" those ...
# language-proposals
k
@diesieben07 As a workaround you can "pass" those generic parameters to the typealias:
typealias Complicated<T, E> = List<Pair<T, List<E>>
d
Yeah, but
MyTypeAlias<T>
is not much shorter than
Class<in T>
😄
k
refer to e.g. a complex generic type
simple smile
d
Well, I wanted to just write
C
instead of
Class<in T>
, because I needed it in like 10 places...