You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Typealias annotation arguments are resolved before provided to ksp:
typealiasMyAlias=Map<String, String>
@SomeAnnotation(
param =MyAlias::class,
)
...
val type:KSType= annotation.arguments.first().value asKSType
check(type.declaration isKSTypeAlias) {
"Not the typealias itself"// this error is thrown - type is already the Map<*, *> (without correctly solved type parameters, but only with star projections)
}
The text was updated successfully, but these errors were encountered:
Typealias annotation arguments are resolved before provided to ksp:
The text was updated successfully, but these errors were encountered: