aboutsummaryrefslogtreecommitdiffhomepage
path: root/etc/coq/multiple/a.v
diff options
context:
space:
mode:
Diffstat (limited to 'etc/coq/multiple/a.v')
-rw-r--r--etc/coq/multiple/a.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/etc/coq/multiple/a.v b/etc/coq/multiple/a.v
new file mode 100644
index 00000000..72088498
--- /dev/null
+++ b/etc/coq/multiple/a.v
@@ -0,0 +1,11 @@
+(* Silly tests for automatic auto file handling *)
+
+Goal (A,B:Prop)(and A B) -> (and B A).
+Intros A B H.
+Induction H.
+Apply conj.
+Assumption.
+Assumption.
+Save and_comms_a.
+
+