summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2007-01-06 16:26:23 +0000
committerMartin Odersky <odersky@gmail.com>2007-01-06 16:26:23 +0000
commit2f6d0cf0fd127be610e2627d89d363fe8cbb1cfe (patch)
treea2761b560726429c90cd6419af37f12074fafd70 /test
parent279cdcb49822d5da28e093a8e99a72916dd03f4d (diff)
downloadscala-2f6d0cf0fd127be610e2627d89d363fe8cbb1cfe.tar.gz
scala-2f6d0cf0fd127be610e2627d89d363fe8cbb1cfe.tar.bz2
scala-2f6d0cf0fd127be610e2627d89d363fe8cbb1cfe.zip
Added `:' to after line in error messages; chan...
Added `:' to after line in error messages; changed unapply pattern matching. Changed TreeSet collection class.
Diffstat (limited to 'test')
-rw-r--r--test/pending/pos/unapplyGeneric.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pending/pos/unapplyGeneric.scala b/test/pending/pos/unapplyGeneric.scala
index 3798d0b466..bf88816885 100644
--- a/test/pending/pos/unapplyGeneric.scala
+++ b/test/pending/pos/unapplyGeneric.scala
@@ -5,7 +5,7 @@ object Bar {
class Bar[A,B](val _1:A, val _2:B) extends Product2[A,B]
object Test {
- Bar(2, 'a') match {
+ new Bar(2, 'a') match {
case Bar(x,y) =>
}
}