• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // This file was automatically generated from serializers.md by Knit tool. Do not edit.
2 package example.exampleSerializer04
3 
4 import kotlinx.serialization.*
5 import kotlinx.serialization.builtins.*
6 
mainnull7 fun main() {
8     val intSerializer: KSerializer<Int> = Int.serializer()
9     println(intSerializer.descriptor)
10 }
11