1 /* 2 * Copyright 2017-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 5 package kotlinx.serialization 6 7 import kotlin.reflect.* 8 9 10 @OptIn(ExperimentalAssociatedObjects::class) 11 @AssociatedObjectKey 12 @Retention(AnnotationRetention.BINARY) 13 @PublishedApi 14 internal annotation class SerializableWith(public val serializer: KClass<out KSerializer<*>>) 15