aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pickling
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-01-11 11:05:40 +0100
committerMartin Odersky <odersky@gmail.com>2016-02-19 14:00:00 +0100
commit9757adc43f3b608974c418a7b8ddf68d355f6c48 (patch)
tree32ac0174ca7af716984cd101fe6100fe91934787 /tests/pending/pickling
parent0a95366873126f6b0b1ba32cd5c3455339e3abf5 (diff)
downloaddotty-9757adc43f3b608974c418a7b8ddf68d355f6c48.tar.gz
dotty-9757adc43f3b608974c418a7b8ddf68d355f6c48.tar.bz2
dotty-9757adc43f3b608974c418a7b8ddf68d355f6c48.zip
Fix pending test for pickling
There is a before/after difference having to do with the order in which class declarations show up.
Diffstat (limited to 'tests/pending/pickling')
-rw-r--r--tests/pending/pickling/named-params.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pending/pickling/named-params.scala b/tests/pending/pickling/named-params.scala
index e9346bb10..2697a7bb7 100644
--- a/tests/pending/pickling/named-params.scala
+++ b/tests/pending/pickling/named-params.scala
@@ -1,10 +1,10 @@
package namedparams
-abstract class C[type Elem, type Value](val elem: Elem) {
+class C[type Elem, type Value](val elem: Elem) {
def toVal: Elem = ???
}
-
+class D[type Elem, V](elem: Elem) extends C[Elem, V](elem)
object Test {
val c = new C[String, String]("A") {