summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-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";
}