summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2003-09-12 13:27:48 +0000
committerburaq <buraq@epfl.ch>2003-09-12 13:27:48 +0000
commitf42db99fd1220511017459206fbaad72025a1f8b (patch)
treefef5da61210d974682f2681e674b0c3774038491 /test
parent19f1bccb170e1eb3542c75bf43a3869e865625de (diff)
downloadscala-f42db99fd1220511017459206fbaad72025a1f8b.tar.gz
scala-f42db99fd1220511017459206fbaad72025a1f8b.tar.bz2
scala-f42db99fd1220511017459206fbaad72025a1f8b.zip
added parentheses around x @ ('a','b')*
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 829b32c838..df0d55707f 100644
--- a/test/files/run/regularpatmat.scala
+++ b/test/files/run/regularpatmat.scala
@@ -97,7 +97,7 @@ object testBM {
=> { x }
- case List( 'a'*, x @ ('a', 'b')* , y @ (('a','b','c') *) )
+ case List( 'a'*, x @ (('a', 'b')*) , y @ (('a','b','c') *) )
=> { y }