Files
kotlin-fork/compiler/testData/codegen/box/callableReference/serializability/boundWithSerializableReceiver.kt
T

22 lines
474 B
Kotlin
Vendored

// 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"
}