Files
kotlin/compiler/testData/codegen/box/callableReference/serializability/boundWithSerializableReceiver.kt
2019-11-19 11:00:09 +03:00

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