• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 @OptIn(ExperimentalAssociatedObjects::class)
10 @AssociatedObjectKey
11 @Retention(AnnotationRetention.BINARY)
12 @PublishedApi
13 internal annotation class SerializableWith(public val serializer: KClass<out KSerializer<*>>)
14