I seem to be getting some recursion issue on runni...
# koin
a
I seem to be getting some recursion issue on running
kspKotlin
Copy code
e: java.lang.StackOverflowError
	at org.jetbrains.kotlin.types.ClassifierBasedTypeConstructor.equals(ClassifierBasedTypeConstructor.kt:40)
I've followed the koin quickstart on the website. One class annotated with
@module
and one class as
@single
Ksp plugin is on the classpath
Copy code
koin = "3.5.6"
koin-annotations = "1.4.0"
If I remove
@module
then
kspKotlin
passes, and then hits the error configured for config failure
Copy code
e: [ksp] --> Missing Definition type
Thought it might be related to this, but doesn't seem so Same issue comes up on versions:
Copy code
koin = "4.0.1"
koin-annotations = "2.0.0-Beta3"
ksp = "2.0.21-1.0.28" 

kotlin = 2.0.21
👍 1
Same issue comes up on Kotlin plugin v1 too sad panda
hmm, seems to be the issue when you have arguments on the class that is annotated with
@module
Which, makes sense. However this isn't clear in documentation I can find