Idris2/tests/idris2/coverage015/expected

53 lines
1003 B
Plaintext
Raw Normal View History

1/1: Building Issue1169 (Issue1169.idr)
Error: test is not covering.
2021-05-03 13:20:12 +03:00
Issue1169.idr:3:1--3:26
1 | %default total
2 |
3 | test : (String, ()) -> ()
^^^^^^^^^^^^^^^^^^^^^^^^^
Missing cases:
test (_, _)
Error: test' is not covering.
2021-05-03 13:20:12 +03:00
Issue1169.idr:6:1--6:24
2 |
3 | test : (String, ()) -> ()
4 | test ("a", ()) = ()
5 |
6 | test' : (Int, ()) -> ()
^^^^^^^^^^^^^^^^^^^^^^^
Missing cases:
test' (_, _)
Error: test'' is not covering.
2021-05-03 13:20:12 +03:00
Issue1169.idr:9:1--9:22
5 |
6 | test' : (Int, ()) -> ()
7 | test' (1, ()) = ()
8 |
9 | test'' : Type -> Type
^^^^^^^^^^^^^^^^^^^^^
Missing cases:
test'' _
2021-05-03 13:20:12 +03:00
1/1: Building Issue1366 (Issue1366.idr)
Error: decode is not covering.
Issue1366.idr:33:1--33:45
29 | data Funny : (a : Type) -> (f : Type -> Type) -> Type where
30 | A : List a -> f a -> Funny a f
31 | B : Funny a f
32 |
33 | decode : NS [[List a, f a], []] -> Funny a f
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Missing cases:
decode (S _)