summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-11-08 23:23:11 -0800
committerJason Zaugg <jzaugg@gmail.com>2013-11-08 23:23:11 -0800
commitbf512ae9165768ef6c1e4952d14b6b6e9a2f670d (patch)
tree1b256f5fae5307fd96f7071459ba9b0cf524dfd0 /test/files
parent0e7543e9e969354072ae29f9a091013880cc75e5 (diff)
parente1fdf86438a6771ff3735a977ca85ba16a99484c (diff)
downloadscala-bf512ae9165768ef6c1e4952d14b6b6e9a2f670d.tar.gz
scala-bf512ae9165768ef6c1e4952d14b6b6e9a2f670d.tar.bz2
scala-bf512ae9165768ef6c1e4952d14b6b6e9a2f670d.zip
Merge pull request #3100 from som-snytt/paulp/reduction
Paulper stack reduction
Diffstat (limited to 'test/files')
-rw-r--r--test/files/neg/t1878.check4
-rw-r--r--test/files/neg/t3189.check2
-rw-r--r--test/files/neg/t5702-neg-bad-and-wild.check14
-rw-r--r--test/files/neg/t5702-neg-bad-xbrace.check4
-rw-r--r--test/files/neg/t5702-neg-ugly-xbrace.check2
5 files changed, 13 insertions, 13 deletions
diff --git a/test/files/neg/t1878.check b/test/files/neg/t1878.check
index ac2071c3d8..5814375515 100644
--- a/test/files/neg/t1878.check
+++ b/test/files/neg/t1878.check
@@ -1,7 +1,7 @@
-t1878.scala:3: error: bad use of _* (a sequence pattern must be the last pattern)
+t1878.scala:3: error: bad simple pattern: bad use of _* (a sequence pattern must be the last pattern)
val err1 = "" match { case Seq(f @ _*, ',') => f }
^
-t1878.scala:9: error: bad use of _* (a sequence pattern must be the last pattern)
+t1878.scala:9: error: bad simple pattern: bad use of _* (a sequence pattern must be the last pattern)
val List(List(_*, arg2), _) = List(List(1,2,3), List(4,5,6))
^
two errors found
diff --git a/test/files/neg/t3189.check b/test/files/neg/t3189.check
index 3913c526a2..122af56474 100644
--- a/test/files/neg/t3189.check
+++ b/test/files/neg/t3189.check
@@ -1,4 +1,4 @@
-t3189.scala:2: error: use _* to match a sequence
+t3189.scala:2: error: bad simple pattern: use _* to match a sequence
val Array(a,b*) = ("": Any)
^
one error found
diff --git a/test/files/neg/t5702-neg-bad-and-wild.check b/test/files/neg/t5702-neg-bad-and-wild.check
index eae81ad5f2..ff9e5e5703 100644
--- a/test/files/neg/t5702-neg-bad-and-wild.check
+++ b/test/files/neg/t5702-neg-bad-and-wild.check
@@ -1,4 +1,4 @@
-t5702-neg-bad-and-wild.scala:10: error: bad use of _* (a sequence pattern must be the last pattern)
+t5702-neg-bad-and-wild.scala:10: error: bad simple pattern: bad use of _* (a sequence pattern must be the last pattern)
case List(1, _*,) => // bad use of _* (a sequence pattern must be the last pattern)
^
t5702-neg-bad-and-wild.scala:10: error: illegal start of simple pattern
@@ -7,22 +7,22 @@ t5702-neg-bad-and-wild.scala:10: error: illegal start of simple pattern
t5702-neg-bad-and-wild.scala:12: error: illegal start of simple pattern
case List(1, _*3,) => // illegal start of simple pattern
^
-t5702-neg-bad-and-wild.scala:14: error: use _* to match a sequence
+t5702-neg-bad-and-wild.scala:14: error: bad simple pattern: use _* to match a sequence
case List(1, x*) => // use _* to match a sequence
^
-t5702-neg-bad-and-wild.scala:15: error: trailing * is not a valid pattern
+t5702-neg-bad-and-wild.scala:15: error: bad simple pattern: trailing * is not a valid pattern
case List(x*, 1) => // trailing * is not a valid pattern
^
-t5702-neg-bad-and-wild.scala:16: error: trailing * is not a valid pattern
+t5702-neg-bad-and-wild.scala:16: error: bad simple pattern: trailing * is not a valid pattern
case (1, x*) => // trailing * is not a valid pattern
^
-t5702-neg-bad-and-wild.scala:17: error: bad use of _* (sequence pattern not allowed)
+t5702-neg-bad-and-wild.scala:17: error: bad simple pattern: bad use of _* (sequence pattern not allowed)
case (1, x@_*) => // bad use of _* (sequence pattern not allowed)
^
-t5702-neg-bad-and-wild.scala:23: error: bad use of _* (a sequence pattern must be the last pattern)
+t5702-neg-bad-and-wild.scala:23: error: bad simple pattern: bad use of _* (a sequence pattern must be the last pattern)
val K(ns @ _*, x) = k // bad use of _* (a sequence pattern must be the last pattern)
^
-t5702-neg-bad-and-wild.scala:24: error: bad use of _* (sequence pattern not allowed)
+t5702-neg-bad-and-wild.scala:24: error: bad simple pattern: bad use of _* (sequence pattern not allowed)
val (b, _ * ) = Pair(5,6) // bad use of _* (sequence pattern not allowed)
^
9 errors found
diff --git a/test/files/neg/t5702-neg-bad-xbrace.check b/test/files/neg/t5702-neg-bad-xbrace.check
index d88638aee9..9240abea44 100644
--- a/test/files/neg/t5702-neg-bad-xbrace.check
+++ b/test/files/neg/t5702-neg-bad-xbrace.check
@@ -1,7 +1,7 @@
-t5702-neg-bad-xbrace.scala:19: error: bad brace or paren after _*
+t5702-neg-bad-xbrace.scala:19: error: bad simple pattern: bad brace or paren after _*
case <year>{_*)}</year> => y
^
-t5702-neg-bad-xbrace.scala:28: error: bad brace or paren after _*
+t5702-neg-bad-xbrace.scala:28: error: bad simple pattern: bad brace or paren after _*
val <top>{a, z@_*)}</top> = xml
^
two errors found
diff --git a/test/files/neg/t5702-neg-ugly-xbrace.check b/test/files/neg/t5702-neg-ugly-xbrace.check
index 7d80bbf6be..cdd2438b0e 100644
--- a/test/files/neg/t5702-neg-ugly-xbrace.check
+++ b/test/files/neg/t5702-neg-ugly-xbrace.check
@@ -1,4 +1,4 @@
-t5702-neg-ugly-xbrace.scala:11: error: bad brace or paren after _*
+t5702-neg-ugly-xbrace.scala:11: error: bad simple pattern: bad brace or paren after _*
val <top>{a, z@_*)</top> = xml
^
t5702-neg-ugly-xbrace.scala:12: error: Missing closing brace `}' assumed here