1 /* 2 * Copyright 2017-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 5 package kotlinx.serialization.test 6 7 import kotlinx.serialization.* 8 import kotlinx.serialization.descriptors.* 9 10 @SerialInfo 11 @Target(AnnotationTarget.PROPERTY) 12 annotation class Id(val id: Int) 13