File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,11 +37,11 @@ Print Assumptions AddCommExt_Transparent.add_comm_ext.
37
37
38
38
Lemma add1_comm_ext_opaque :
39
39
(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 .
41
41
42
42
Lemma add1_comm_ext_transparent :
43
43
(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 .
45
45
46
46
Print Assumptions add1_comm_ext_opaque.
47
47
(* Should answer: extensionality *)
@@ -63,7 +63,7 @@ End false_positive.
63
63
64
64
Lemma comm_plus5 : forall x,
65
65
x + 5 = 5 + x.
66
- Proof (false_positive.add_comm 5).
66
+ Proof . exact (false_positive.add_comm 5). Qed .
67
67
68
68
Print Assumptions comm_plus5.
69
69
(* Should answer : Closed under the global context *)
You can’t perform that action at this time.
0 commit comments