96d0b1c47a
Revert "Mute/ignore 'PROVIDED_RUNTIME_TOO_LOW' in tests"
10 lines
226 B
Kotlin
Vendored
10 lines
226 B
Kotlin
Vendored
// This test enshures that analysis ends up without compiler exceptions
|
|
|
|
import kotlinx.serialization.*
|
|
|
|
@Serializable
|
|
class Digest() {
|
|
@Serializer(forClass = Digest::class)
|
|
companion object : KSerializer<Digest> {}
|
|
}
|