2021-04-28 11:33:27 +03:00
|
|
|
1/1: Building Issue1169 (Issue1169.idr)
|
|
|
|
Error: test is not covering.
|
|
|
|
|
2021-06-05 14:53:22 +03:00
|
|
|
Issue1169:3:1--3:26
|
2021-05-03 13:20:12 +03:00
|
|
|
1 | %default total
|
|
|
|
2 |
|
|
|
|
3 | test : (String, ()) -> ()
|
2021-04-28 11:33:27 +03:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
Missing cases:
|
|
|
|
test (_, _)
|
|
|
|
|
|
|
|
Error: test' is not covering.
|
|
|
|
|
2021-06-05 14:53:22 +03:00
|
|
|
Issue1169:6:1--6:24
|
2021-05-03 13:20:12 +03:00
|
|
|
2 |
|
|
|
|
3 | test : (String, ()) -> ()
|
|
|
|
4 | test ("a", ()) = ()
|
|
|
|
5 |
|
|
|
|
6 | test' : (Int, ()) -> ()
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
2021-04-28 11:33:27 +03:00
|
|
|
|
|
|
|
Missing cases:
|
|
|
|
test' (_, _)
|
|
|
|
|
|
|
|
Error: test'' is not covering.
|
|
|
|
|
2021-06-05 14:53:22 +03:00
|
|
|
Issue1169:9:1--9:22
|
2021-05-03 13:20:12 +03:00
|
|
|
5 |
|
|
|
|
6 | test' : (Int, ()) -> ()
|
|
|
|
7 | test' (1, ()) = ()
|
|
|
|
8 |
|
|
|
|
9 | test'' : Type -> Type
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^
|
2021-04-28 11:33:27 +03:00
|
|
|
|
|
|
|
Missing cases:
|
|
|
|
test'' _
|
|
|
|
|
2021-05-03 13:20:12 +03:00
|
|
|
1/1: Building Issue1366 (Issue1366.idr)
|
2021-05-14 19:35:21 +03:00
|
|
|
Warning: We are about to implicitly bind the following lowercase names.
|
|
|
|
You may be unintentionally shadowing the associated global definitions:
|
|
|
|
f is shadowing Main.f
|
|
|
|
Warning: We are about to implicitly bind the following lowercase names.
|
|
|
|
You may be unintentionally shadowing the associated global definitions:
|
|
|
|
f is shadowing Main.f
|
|
|
|
Warning: We are about to implicitly bind the following lowercase names.
|
|
|
|
You may be unintentionally shadowing the associated global definitions:
|
|
|
|
f is shadowing Main.f
|
2021-05-03 13:20:12 +03:00
|
|
|
Error: decode is not covering.
|
|
|
|
|
2021-06-05 14:53:22 +03:00
|
|
|
Issue1366:33:1--33:45
|
2021-05-03 13:20:12 +03:00
|
|
|
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 _)
|
|
|
|
|