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

get rid of a few %L we do not need any more

parent c6490e75
No related branches found
No related tags found
No related merge requests found
...@@ -7,12 +7,11 @@ Module LangTests. ...@@ -7,12 +7,11 @@ Module LangTests.
Definition add := (21 + 21)%L. Definition add := (21 + 21)%L.
Goal σ, prim_step add σ 42 σ None. Goal σ, prim_step add σ 42 σ None.
Proof. intros; do_step done. Qed. Proof. intros; do_step done. Qed.
(* FIXME RJ why do I need the %L ? *) Definition rec : expr := rec:: #0 #1. (* fix f x => f x *)
Definition rec : expr := (rec:: #0 #1)%L. (* fix f x => f x *)
Definition rec_app : expr := rec 0. Definition rec_app : expr := rec 0.
Goal σ, prim_step rec_app σ rec_app σ None. Goal σ, prim_step rec_app σ rec_app σ None.
Proof. Set Printing All. intros; do_step done. Qed. Proof. Set Printing All. intros; do_step done. Qed.
Definition lam : expr := (λ: #0 + 21)%L. Definition lam : expr := λ: #0 + 21.
Goal σ, prim_step (App lam (LitNat 21)) σ add σ None. Goal σ, prim_step (App lam (LitNat 21)) σ add σ None.
Proof. intros; do_step done. Qed. Proof. intros; do_step done. Qed.
End LangTests. End LangTests.
...@@ -23,7 +22,7 @@ Module LiftingTests. ...@@ -23,7 +22,7 @@ Module LiftingTests.
Implicit Types Q : val iProp heap_lang Σ. Implicit Types Q : val iProp heap_lang Σ.
(* FIXME: Fix levels so that we do not need the parenthesis here. *) (* FIXME: Fix levels so that we do not need the parenthesis here. *)
Definition e : expr := (let: ref 1 in #0 <- !#0 + 1; !#0)%L. Definition e : expr := let: ref 1 in #0 <- !#0 + 1; !#0.
Goal σ E, (ownP σ : iProp heap_lang Σ) (wp E e (λ v, (v = 2))). Goal σ E, (ownP σ : iProp heap_lang Σ) (wp E e (λ v, (v = 2))).
Proof. Proof.
move=> σ E. rewrite /e. move=> σ E. rewrite /e.
......
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