fba2f5ea4e
to enhance and increase test coverage of the plugin.
15 lines
271 B
Kotlin
Vendored
15 lines
271 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
import kotlinx.serialization.*
|
|
|
|
@Serializable(with = ContextualSerializer::class)
|
|
class Ref(
|
|
val id: String,
|
|
)
|
|
|
|
fun box(): String {
|
|
val kind = Ref.serializer().descriptor.kind.toString()
|
|
if (kind != "CONTEXTUAL") return kind
|
|
return "OK"
|
|
}
|