aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/ssrtest/intro_beta.v
diff options
context:
space:
mode:
authorCyril Cohen2018-02-06 19:36:53 +0100
committerGitHub2018-02-06 19:36:53 +0100
commitd6bc72cd477ed6fe8b95782b26a2e0fc92711395 (patch)
tree6996e39182b97573b1cdecaeb7c8c8a3f58c1e77 /mathcomp/ssrtest/intro_beta.v
parent11e539dae1bfe8bc67fc7bd1eb65ee3b4c29f813 (diff)
parentf3ce9ace4b55654d6240db9eb41a6de3c488f0d9 (diff)
Merge pull request #164 from CohenCyril/linting
linting of the whole library
Diffstat (limited to 'mathcomp/ssrtest/intro_beta.v')
-rw-r--r--mathcomp/ssrtest/intro_beta.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/mathcomp/ssrtest/intro_beta.v b/mathcomp/ssrtest/intro_beta.v
index 6b1b96d..4402be9 100644
--- a/mathcomp/ssrtest/intro_beta.v
+++ b/mathcomp/ssrtest/intro_beta.v
@@ -10,6 +10,6 @@ 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.
+move=> a b.
match goal with |- (let y := _ in _) => idtac end.
Admitted.