aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Logic/ImplAnd.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/Util/Logic/ImplAnd.v')
-rw-r--r--src/Util/Logic/ImplAnd.v2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Util/Logic/ImplAnd.v b/src/Util/Logic/ImplAnd.v
new file mode 100644
index 000000000..9ca6e0447
--- /dev/null
+++ b/src/Util/Logic/ImplAnd.v
@@ -0,0 +1,2 @@
+Lemma impl_and_iff {A B C} : (A -> (B /\ C)) <-> ((A -> B) /\ (A -> C)).
+Proof. tauto. Qed.