Idris2/tests/idris2/basic022/expected

24 lines
723 B
Plaintext
Raw Normal View History

1/1: Building Erase (Erase.idr)
Error: While processing left hand side of bad. Can't match on False (Erased argument).
Erase:5:5--5:10
2021-02-11 20:24:26 +03:00
1 | myReplace : forall p . (0 rule : x = y) -> (1 val : p y) -> p x
2 | myReplace Refl prf = prf
3 |
4 | bad : (0 x : Bool) -> Bool
2020-07-22 22:16:43 +03:00
5 | bad False = True
2021-02-11 20:24:26 +03:00
^^^^^
Error: While processing left hand side of minusBad. Can't match on LeZ (Erased argument).
Erase:19:18--19:21
2021-02-11 20:24:26 +03:00
15 | minus (S k) (S j) (LeS p) = minus k j p
16 |
17 | -- y is used in the run time case tree, so erasure not okay
18 | minusBad : (x : Nat) -> (0 y : Nat) -> (0 prf : LT y x) -> Nat
2020-07-22 22:16:43 +03:00
19 | minusBad (S k) Z LeZ = S k
2021-02-11 20:24:26 +03:00
^^^
Main> \m => minus (S (S m)) m prf
Main> Bye for now!