aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/ssrtest/intro_beta.v
diff options
context:
space:
mode:
Diffstat (limited to 'mathcomp/ssrtest/intro_beta.v')
-rw-r--r--mathcomp/ssrtest/intro_beta.v15
1 files changed, 0 insertions, 15 deletions
diff --git a/mathcomp/ssrtest/intro_beta.v b/mathcomp/ssrtest/intro_beta.v
deleted file mode 100644
index 4402be9..0000000
--- a/mathcomp/ssrtest/intro_beta.v
+++ /dev/null
@@ -1,15 +0,0 @@
-(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
-(* Distributed under the terms of CeCILL-B. *)
-Require Import mathcomp.ssreflect.ssreflect.
-
-
-Axiom T : Type.
-
-Definition C (P : T -> Prop) := forall x, P x.
-
-Axiom P : T -> T -> Prop.
-
-Lemma foo : C (fun x => forall y, let z := x in P y x).
-move=> a b.
-match goal with |- (let y := _ in _) => idtac end.
-Admitted.