summaryrefslogtreecommitdiff
path: root/test/files/neg/t997.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-10-08 21:20:23 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-10-09 09:32:45 +0200
commitd0af55ce1ffb9d77e6a604edb41cda2b955e9f02 (patch)
tree66b9b41e4525287ef892d68ba140a804db475e25 /test/files/neg/t997.check
parentacd77803f7da7c369f4ffdc70b5eeec4a23e35ae (diff)
downloadscala-d0af55ce1ffb9d77e6a604edb41cda2b955e9f02.tar.gz
scala-d0af55ce1ffb9d77e6a604edb41cda2b955e9f02.tar.bz2
scala-d0af55ce1ffb9d77e6a604edb41cda2b955e9f02.zip
SI-7895 Avoid cascade of "symbol not found" in pattern matches
If we can't type check the `Foo` in `case Foo(a, b) => (a, b)`, we should enter error symbols for `a` and `b` to avoid further errors being reported in the case body.
Diffstat (limited to 'test/files/neg/t997.check')
-rw-r--r--test/files/neg/t997.check5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/files/neg/t997.check b/test/files/neg/t997.check
index be1e92c369..8c41060ba2 100644
--- a/test/files/neg/t997.check
+++ b/test/files/neg/t997.check
@@ -4,7 +4,4 @@ t997.scala:13: error: wrong number of patterns for object Foo offering (String,
t997.scala:13: error: wrong number of patterns for object Foo offering (String, String): expected 2, found 3
"x" match { case Foo(a, b, c) => Console.println((a,b,c)) }
^
-t997.scala:13: error: not found: value a
-"x" match { case Foo(a, b, c) => Console.println((a,b,c)) }
- ^
-three errors found
+two errors found