mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
23 lines
504 B
Kotlin
Vendored
23 lines
504 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
// WITH_REFLECT
|
|
|
|
import java.io.*
|
|
import kotlin.test.*
|
|
|
|
data class Foo(val value: String) : Serializable
|
|
|
|
fun box(): String {
|
|
val baos = ByteArrayOutputStream()
|
|
val oos = ObjectOutputStream(baos)
|
|
oos.writeObject(Foo("abacaba")::value)
|
|
oos.close()
|
|
|
|
val bais = ByteArrayInputStream(baos.toByteArray())
|
|
val ois = ObjectInputStream(bais)
|
|
assertEquals(Foo("abacaba")::value, ois.readObject())
|
|
ois.close()
|
|
|
|
return "OK"
|
|
}
|