summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2003-10-28 14:48:04 +0000
committerburaq <buraq@epfl.ch>2003-10-28 14:48:04 +0000
commit4c58fa7b64ca443e59f63837932151e1fb11987c (patch)
tree4be76363f8535c293329c651b1f9c62b9ef9188b
parentda10615b3f06e1c30dec1e3ca36b4f1ef52682b0 (diff)
downloadscala-4c58fa7b64ca443e59f63837932151e1fb11987c.tar.gz
scala-4c58fa7b64ca443e59f63837932151e1fb11987c.tar.bz2
scala-4c58fa7b64ca443e59f63837932151e1fb11987c.zip
more descriptive comment
-rw-r--r--test/files/run/regularpatmat.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/regularpatmat.scala b/test/files/run/regularpatmat.scala
index 6a4c0eebfc..6e964b8f13 100644
--- a/test/files/run/regularpatmat.scala
+++ b/test/files/run/regularpatmat.scala
@@ -600,7 +600,7 @@ object testMZ {
}
case class On();
case class Tw();
- def testBar(xs: List[Any]) = xs match {
+ def testBar(xs: List[Any]) = xs match { // bug#180
case List(((On(), Tw())* | (On(), On())), On()) => "case"
case _ => "default";
}