Skip to content

Commit 59e6e81

Browse files
authored
Merge pull request #191 from SkySkimmer/proof-term
Stop using "Proof term" in output test
2 parents 311dfa5 + ec400f6 commit 59e6e81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test-suite/output/PrintAssumptionsArith.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ Print Assumptions AddCommExt_Transparent.add_comm_ext.
3737

3838
Lemma add1_comm_ext_opaque :
3939
(fun x => x + 1) = (fun x => 1 + x).
40-
Proof (AddCommExt_Opaque.add_comm_ext 1).
40+
Proof. exact (AddCommExt_Opaque.add_comm_ext 1). Qed.
4141

4242
Lemma add1_comm_ext_transparent :
4343
(fun x => x + 1) = (fun x => 1 + x).
44-
Proof (AddCommExt_Transparent.add_comm_ext 1).
44+
Proof. exact (AddCommExt_Transparent.add_comm_ext 1). Qed.
4545

4646
Print Assumptions add1_comm_ext_opaque.
4747
(* Should answer: extensionality *)
@@ -63,7 +63,7 @@ End false_positive.
6363

6464
Lemma comm_plus5 : forall x,
6565
x + 5 = 5 + x.
66-
Proof (false_positive.add_comm 5).
66+
Proof. exact (false_positive.add_comm 5). Qed.
6767

6868
Print Assumptions comm_plus5.
6969
(* Should answer : Closed under the global context *)

0 commit comments

Comments
 (0)