aboutsummaryrefslogtreecommitdiffhomepage
path: root/etc/coq/multiple/a.v
blob: d628156e079979034f34bd54e34bd8de06c7162d (plain)
1
2
3
4
5
6
7
8
9
10
(* Simple tests for multiple file handling *)

Goal forall (A B:Prop),(A /\ B) -> (B /\ A).
  intros A B H.
  elim H.
  intros.
  split.
  assumption.
  assumption.
Save and_comms_a.