Skip to content
Snippets Groups Projects
Commit 935e3488 authored by Ralf Jung's avatar Ralf Jung
Browse files

Merge branch 'print-prim' into 'master'

adapt to coq/coq#13840

See merge request iris/iris!635
parents 7b4a04ce ba9e2688
No related branches found
No related tags found
No related merge requests found
......@@ -301,57 +301,57 @@ Proof. naive_solver. Qed.
Check "p1".
Lemma p1 : forall P, True -> P |- P.
Proof.
Unset Printing Notations. Show. Set Printing Notations.
Unset Printing Notations. Set Printing Raw Literals. Show. Set Printing Notations. Unset Printing Raw Literals.
Abort.
Check "p2".
Lemma p2 : forall P, True /\ (P |- P).
Proof.
Unset Printing Notations. Show. Set Printing Notations.
Unset Printing Notations. Set Printing Raw Literals. Show. Set Printing Notations. Unset Printing Raw Literals.
Abort.
Check "p3".
Lemma p3 : exists P, P |- P.
Proof.
Unset Printing Notations. Show. Set Printing Notations.
Unset Printing Notations. Set Printing Raw Literals. Show. Set Printing Notations. Unset Printing Raw Literals.
Abort.
Check "p4".
Lemma p4 : |-@{PROP} exists (x : nat), x = 0⌝.
Proof.
Unset Printing Notations. Show. Set Printing Notations.
Unset Printing Notations. Set Printing Raw Literals. Show. Set Printing Notations. Unset Printing Raw Literals.
Abort.
Check "p5".
Lemma p5 : |-@{PROP} exists (x : nat), forall y : nat, y = y⌝.
Proof.
Unset Printing Notations. Show. Set Printing Notations.
Unset Printing Notations. Set Printing Raw Literals. Show. Set Printing Notations. Unset Printing Raw Literals.
Abort.
Check "p6".
Lemma p6 : exists! (z : nat), |-@{PROP} exists (x : nat), forall y : nat, y = y ** z = 0⌝.
Proof.
Unset Printing Notations. Show. Set Printing Notations.
Unset Printing Notations. Set Printing Raw Literals. Show. Set Printing Notations. Unset Printing Raw Literals.
Abort.
Check "p7".
Lemma p7 : forall (a : nat), a = 0 -> forall y, True |-@{PROP} y >= 0⌝.
Proof.
Unset Printing Notations. Show. Set Printing Notations.
Unset Printing Notations. Set Printing Raw Literals. Show. Set Printing Notations. Unset Printing Raw Literals.
Abort.
Check "p8".
Lemma p8 : forall (a : nat), a = 0 -> forall y, |-@{PROP} y >= 0⌝.
Proof.
Unset Printing Notations. Show. Set Printing Notations.
Unset Printing Notations. Set Printing Raw Literals. Show. Set Printing Notations. Unset Printing Raw Literals.
Abort.
Check "p9".
Lemma p9 : forall (a : nat), a = 0 -> forall y : nat, |-@{PROP} forall z : nat, z >= 0⌝.
Proof.
Unset Printing Notations. Show. Set Printing Notations.
Unset Printing Notations. Set Printing Raw Literals. Show. Set Printing Notations. Unset Printing Raw Literals.
Abort.
Set Printing Notations.
Set Printing Notations. Unset Printing Raw Literals.
End parsing_tests.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment