summaryrefslogtreecommitdiff
path: root/test/files/neg/t5702-neg-bad-and-wild.check
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2013-10-17 16:41:18 -0700
committerSom Snytt <som.snytt@gmail.com>2013-11-08 11:09:20 -0800
commitef273e4790528f267655fff147c712941cc7ce1a (patch)
treebbf7c4199606fa271833928506d2b0bb4044ab9b /test/files/neg/t5702-neg-bad-and-wild.check
parent19e68d6974c3067814b818b4dfd7d15461a9ef29 (diff)
downloadscala-ef273e4790528f267655fff147c712941cc7ce1a.tar.gz
scala-ef273e4790528f267655fff147c712941cc7ce1a.tar.bz2
scala-ef273e4790528f267655fff147c712941cc7ce1a.zip
Parser stack reduction discussion
Check files
Diffstat (limited to 'test/files/neg/t5702-neg-bad-and-wild.check')
-rw-r--r--test/files/neg/t5702-neg-bad-and-wild.check14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/files/neg/t5702-neg-bad-and-wild.check b/test/files/neg/t5702-neg-bad-and-wild.check
index 3970c755bd..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: illegal start of simple 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