aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/tcpoly_parseridioms.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/tcpoly_parseridioms.check')
-rw-r--r--tests/pending/run/tcpoly_parseridioms.check21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/pending/run/tcpoly_parseridioms.check b/tests/pending/run/tcpoly_parseridioms.check
deleted file mode 100644
index 8bd0a086d..000000000
--- a/tests/pending/run/tcpoly_parseridioms.check
+++ /dev/null
@@ -1,21 +0,0 @@
-tcpoly_parseridioms.scala:18: warning: match may not be exhaustive.
-It would fail on the following input: ParseResult()
- case Success(next, x) => b(next) match {
- ^
-tcpoly_parseridioms.scala:17: warning: match may not be exhaustive.
-It would fail on the following input: ParseResult()
- def apply(in: Input): ParseResult[Tuple2[T, U]] = a(in) match {
- ^
-tcpoly_parseridioms.scala:30: warning: match may not be exhaustive.
-It would fail on the following input: ParseResult()
- case Failure(_, _) => b(in) match {
- ^
-tcpoly_parseridioms.scala:28: warning: match may not be exhaustive.
-It would fail on the following input: ParseResult()
- def apply(in: Input): ParseResult[T] = a(in) match {
- ^
-tcpoly_parseridioms.scala:39: warning: match may not be exhaustive.
-It would fail on the following input: ParseResult()
- def apply(in: Input): ParseResult[U] = a(in) match {
- ^
-Success(List(),Plus(1,2))