• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // This file was automatically generated from serializers.md by Knit tool. Do not edit.
2 package example.exampleSerializer03
3 
4 import kotlinx.serialization.*
5 
6 @Serializable
7 @SerialName("Color")
8 class Color(val rgb: Int)
9 
10 @Serializable
11 @SerialName("Box")
12 class Box<T>(val contents: T)
13 
mainnull14 fun main() {
15     val boxedColorSerializer = Box.serializer(Color.serializer())
16     println(boxedColorSerializer.descriptor)
17 }
18