Library Mtac2Tests.test_mtry
Require Import Mtac2.Mtac2.
Import M.
Import notations.
Goal True.
MProof.
mtry' (raise exception) (fun _=>ret I).
Qed.
Goal True.
MProof.
mtry raise exception with _ => ret I end.
Qed.
Definition one : Exception. exact exception. Qed.
Goal True.
MProof.
mtry @raise True exception with exception => ret I end.
Qed.
Goal True.
MProof.
mtry' (raise one) (fun e =>
mtry' (unify e exception UniCoq;; raise e) (fun _=>ret I)).
Qed.
Goal True.
MProof.
Fail mtry @raise True one with exception => ret I end.
ret I.
Qed.
Import M.
Import notations.
Goal True.
MProof.
mtry' (raise exception) (fun _=>ret I).
Qed.
Goal True.
MProof.
mtry raise exception with _ => ret I end.
Qed.
Definition one : Exception. exact exception. Qed.
Goal True.
MProof.
mtry @raise True exception with exception => ret I end.
Qed.
Goal True.
MProof.
mtry' (raise one) (fun e =>
mtry' (unify e exception UniCoq;; raise e) (fun _=>ret I)).
Qed.
Goal True.
MProof.
Fail mtry @raise True one with exception => ret I end.
ret I.
Qed.