summaryrefslogtreecommitdiff
path: root/test/files/run/si5374.check
diff options
context:
space:
mode:
authoraleksandar <aleksandar@lampmac14.epfl.ch>2012-01-23 18:47:04 +0100
committeraleksandar <aleksandar@lampmac14.epfl.ch>2012-01-23 18:51:35 +0100
commita6fcd70b6047ab56cb3415f378ffc8d72a524a8d (patch)
treefa83abdb558fe4551440c5e24dd470982f34c7fa /test/files/run/si5374.check
parent9a20086495e7734b636c5ee625d305a3fbaea476 (diff)
downloadscala-a6fcd70b6047ab56cb3415f378ffc8d72a524a8d.tar.gz
scala-a6fcd70b6047ab56cb3415f378ffc8d72a524a8d.tar.bz2
scala-a6fcd70b6047ab56cb3415f378ffc8d72a524a8d.zip
Fix for SI-5374.
Lists are now serialized so that the entire list structure is serialized, including list nodes. This is different from the previous behaviour where only the elements were serialized. List buffers are now optimized so that only the elements of the list are serialized, and not the nodes of the internally maintained list.
Diffstat (limited to 'test/files/run/si5374.check')
-rw-r--r--test/files/run/si5374.check3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/run/si5374.check b/test/files/run/si5374.check
new file mode 100644
index 0000000000..cdf0bc7e5b
--- /dev/null
+++ b/test/files/run/si5374.check
@@ -0,0 +1,3 @@
+ListBuffer(1, 2, 3, 1)
+ListBuffer(1, 2, 3, 1)
+ListBuffer() \ No newline at end of file