summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2010-02-28 21:09:06 +0000
committerIulian Dragos <jaguarul@gmail.com>2010-02-28 21:09:06 +0000
commitb94c6e0da6d33bc69f1419634128e2f401109b61 (patch)
tree89d1ed33a06fa92ae1282034927b188d4cf9398c /test/files/pos
parent9bfc0f0ac615b48b39b696dc1fb61ba07e5e8274 (diff)
downloadscala-b94c6e0da6d33bc69f1419634128e2f401109b61.tar.gz
scala-b94c6e0da6d33bc69f1419634128e2f401109b61.tar.bz2
scala-b94c6e0da6d33bc69f1419634128e2f401109b61.zip
Fixed specialized pattern matches.
specialized implementations.
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/spec-List.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/spec-List.scala b/test/files/pos/spec-List.scala
index ad864abd7c..9535eaa32a 100644
--- a/test/files/pos/spec-List.scala
+++ b/test/files/pos/spec-List.scala
@@ -23,7 +23,7 @@ import annotation.tailrec
* @author Martin Odersky and others
* @version 2.8
*/
-sealed abstract class List[@specialized +A] extends LinearSeq[A]
+sealed trait List[@specialized +A] extends LinearSeq[A]
with Product
with GenericTraversableTemplate[A, List]
with LinearSeqLike[A, List[A]] {