Idris2/tests/idris2/error004/expected

26 lines
965 B
Plaintext
Raw Normal View History

1/1: Building Error1 (Error1.idr)
2020-07-22 22:16:43 +03:00
Error1.idr:8:9--9:1:While processing right hand side
of wrong at Error1.idr:8:1--9:1:
2020-06-11 23:46:36 +03:00
Can't find an implementation for Show (Vect 4 Integer) at:
2020-07-22 22:16:43 +03:00
8 | wrong = show (the (Vect _ _) [1,2,3,4])
1/1: Building Error2 (Error2.idr)
2020-07-22 22:16:43 +03:00
Error2.idr:13:38--13:45:While processing right hand side
of show at Error2.idr:13:3--15:1:
Multiple solutions found in search of:
2020-07-22 22:16:43 +03:00
Show (Vect k Integer)
2020-06-11 23:46:36 +03:00
at:
2020-07-22 22:16:43 +03:00
13 | show (x :: xs) = show x ++ ", " ++ show xs
^^^^^^^
Possible correct results:
2020-07-22 22:16:43 +03:00
Show implementation at Error2.idr:11:1--15:1
Show implementation at Error2.idr:7:1--11:1
Error2.idr:16:9--17:1:While processing right hand side
of wrong at Error2.idr:16:1--17:1:
Multiple solutions found in search of:
2020-07-22 22:16:43 +03:00
Show (Vect 1 Integer)
2020-06-11 23:46:36 +03:00
at:
2020-07-22 22:16:43 +03:00
16 | wrong = show (the (Vect _ _) [1])
Possible correct results:
2020-07-22 22:16:43 +03:00
Show implementation at Error2.idr:11:1--15:1
Show implementation at Error2.idr:7:1--11:1