summaryrefslogtreecommitdiff
path: root/test/files/jvm/t1116.scala
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2008-07-29 15:18:07 +0000
committerPhilipp Haller <hallerp@gmail.com>2008-07-29 15:18:07 +0000
commit0c33725df730590e399225b0fe25bd2a1f0a35a4 (patch)
tree8bd0cfaf742d7066f6a075066ccca7cd8fd7ca53 /test/files/jvm/t1116.scala
parentf4efeb88f2b61f1ad6751988d09d288e77e33c17 (diff)
downloadscala-0c33725df730590e399225b0fe25bd2a1f0a35a4.tar.gz
scala-0c33725df730590e399225b0fe25bd2a1f0a35a4.tar.bz2
scala-0c33725df730590e399225b0fe25bd2a1f0a35a4.zip
Fixed #1143. Added tests for #1143 and #1116.
Diffstat (limited to 'test/files/jvm/t1116.scala')
-rw-r--r--test/files/jvm/t1116.scala27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/files/jvm/t1116.scala b/test/files/jvm/t1116.scala
new file mode 100644
index 0000000000..023e5b3a02
--- /dev/null
+++ b/test/files/jvm/t1116.scala
@@ -0,0 +1,27 @@
+object Serialize {
+ @throws(classOf[java.io.IOException])
+ def write[A](o: A): Array[Byte] = {
+ val ba = new java.io.ByteArrayOutputStream(512)
+ val out = new java.io.ObjectOutputStream(ba)
+ out.writeObject(o)
+ out.close()
+ ba.toByteArray()
+ }
+ @throws(classOf[java.io.IOException])
+ @throws(classOf[ClassNotFoundException])
+ def read[A](buffer: Array[Byte]): A = {
+ val in =
+ new java.io.ObjectInputStream(new java.io.ByteArrayInputStream(buffer))
+ in.readObject().asInstanceOf[A]
+ }
+}
+
+object Foo {
+ def obj_foo(x: Int) = { () => x }
+}
+
+object Test {
+ def main(args: Array[String]) {
+ Serialize.write(Foo.obj_foo(3))
+ }
+}