Idris2/tests/idris2/coverage009/expected
2021-02-12 18:37:12 +00:00

20 lines
464 B
Plaintext

1/1: Building unreachable (unreachable.idr)
Warning: Unreachable clause: foo Nothing True
unreachable.idr:3:1--3:17
1 | foo : Maybe Int -> Bool -> Int
2 | foo Nothing _ = 42
3 | foo Nothing True = 94
^^^^^^^^^^^^^^^^
Warning: Unreachable clause: foo Nothing False
unreachable.idr:5:1--5:18
1 | foo : Maybe Int -> Bool -> Int
2 | foo Nothing _ = 42
3 | foo Nothing True = 94
4 | foo (Just x) _ = x
5 | foo Nothing False = 42
^^^^^^^^^^^^^^^^^