Idris2/tests/idris2/coverage015/expected

62 lines
1.5 KiB
Plaintext
Raw Normal View History

1/1: Building Issue1169 (Issue1169.idr)
Error: test is not covering.
Issue1169:3:1--3:26
2021-05-03 13:20:12 +03:00
1 | %default total
2 |
3 | test : (String, ()) -> ()
^^^^^^^^^^^^^^^^^^^^^^^^^
Missing cases:
test (_, _)
Error: test' is not covering.
Issue1169:6:1--6:24
2021-05-03 13:20:12 +03:00
2 |
3 | test : (String, ()) -> ()
4 | test ("a", ()) = ()
5 |
6 | test' : (Int, ()) -> ()
^^^^^^^^^^^^^^^^^^^^^^^
Missing cases:
test' (_, _)
Error: test'' is not covering.
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
^^^^^^^^^^^^^^^^^^^^^
Missing cases:
test'' _
2021-05-03 13:20:12 +03:00
1/1: Building Issue1366 (Issue1366.idr)
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.
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 _)