Closed Bruce0203 closed 9 months ago
Describe the bug same as title
To Reproduce run code snippet below
Expected behavior no error
Koin module and version: io.insert-koin:koin-core:3.5.0
io.insert-koin:koin-core:3.5.0
@file:OptIn(ExperimentalSerializationApi::class) import kotlinx.serialization.ExperimentalSerializationApi import kotlinx.serialization.MetaSerializable import kotlinx.serialization.serializer @MetaSerializable @Target(AnnotationTarget.CLASS) @Repeatable annotation class MySerializable @MySerializable @MySerializable //two of MySerializable class MyClass @MySerializable @MySerializable //two of MySerializable object MyObject fun main() { MyClass.serializer() //work serializer<MyClass>() //work MyObject.serializer() //work serializer<MyObject>() //failed }
what is the link with Koin framework?
Oh, I'm sorry, I'm in the wrong place!
Describe the bug same as title
To Reproduce run code snippet below
Expected behavior no error
Koin module and version:
io.insert-koin:koin-core:3.5.0