// FIR_IDENTICAL // FIR_DISABLE_LAZY_RESOLVE_CHECKS // WITH_STDLIB // SKIP_TXT import kotlinx.serialization.* @MetaSerializable annotation class TopLevel class MetaSerializableNestedTest { @MetaSerializable @Target(AnnotationTarget.PROPERTY, AnnotationTarget.CLASS) annotation class JsonComment(val comment: String) object Nested2 { @MetaSerializable annotation class Nested3 } @JsonComment("class_comment") data class IntDataCommented(val i: Int) }