summaryrefslogtreecommitdiff
path: root/test/files/run/tcpoly_parseridioms.check
blob: 8bd0a086d61670276b73e4c24cdb49e47ae8aa8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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))