summaryrefslogblamecommitdiff
path: root/test/files/run/tcpoly_parseridioms.check
blob: 8bd0a086d61670276b73e4c24cdb49e47ae8aa8d (plain) (tree)
1
2
3
4
5
6
7
8





                                                                   

                                                                     











                                                                   
                         
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))