summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2015-07-29 11:39:04 +0200
committerLukas Rytz <lukas.rytz@gmail.com>2015-07-30 09:58:23 +0200
commitdefb1465909c3f740871a56973c32b276f775b91 (patch)
treef31ae4c9fdb189302788fa31e61919d5b298128d /test/files/pos
parent512d19387da86ce95d7edd1742bf03287cf68a39 (diff)
downloadscala-defb1465909c3f740871a56973c32b276f775b91.tar.gz
scala-defb1465909c3f740871a56973c32b276f775b91.tar.bz2
scala-defb1465909c3f740871a56973c32b276f775b91.zip
SI-9375 add synthetic readResolve only for static modules
For inner modules, the synthetic readResolve method would cause the module constructor to be invoked on de-serialization in certain situations. See the discussion in the ticket. Adds a comprehensive test around serializing and de-serializing modules.
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/t6666d.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/files/pos/t6666d.scala b/test/files/pos/t6666d.scala
new file mode 100644
index 0000000000..49a688f91b
--- /dev/null
+++ b/test/files/pos/t6666d.scala
@@ -0,0 +1,18 @@
+
+import scala.collection.immutable.TreeMap
+import scala.math.Ordering
+
+class Test[K](param:TreeMap[K,Int]){
+ def this() = this({
+ implicit object TreeOrd extends Ordering[K](){
+ def compare(a: K, b: K) = {
+ -1
+ }
+ }
+ new TreeMap[K, Int]()
+ })
+}
+
+object Test extends App {
+ new Test()
+}