aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/ssrtest/ssrsyntax1.v
diff options
context:
space:
mode:
authorEnrico Tassi2018-04-12 09:54:36 +0200
committerEnrico Tassi2018-04-12 09:54:36 +0200
commitd54b8dff818f0b1218df14cfb2b813da93154fa9 (patch)
treeb89257dd429d6d57c7efbe6403b9a231392b2a8b /mathcomp/ssrtest/ssrsyntax1.v
parentc17414bbef21bb3d0b96ee004c29ef7d56e55e2e (diff)
remove ssrtest: it now belongs to Coq
Diffstat (limited to 'mathcomp/ssrtest/ssrsyntax1.v')
-rw-r--r--mathcomp/ssrtest/ssrsyntax1.v26
1 files changed, 0 insertions, 26 deletions
diff --git a/mathcomp/ssrtest/ssrsyntax1.v b/mathcomp/ssrtest/ssrsyntax1.v
deleted file mode 100644
index 3fc202f..0000000
--- a/mathcomp/ssrtest/ssrsyntax1.v
+++ /dev/null
@@ -1,26 +0,0 @@
-(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
-(* Distributed under the terms of CeCILL-B. *)
-Require mathcomp.ssreflect.ssreflect.
-Require Import Arith.
-
-Goal (forall a b, a + b = b + a).
-intros.
-rewrite plus_comm, plus_comm.
-split.
-Abort.
-
-Module Foo.
-Import ssreflect.
-
-Goal (forall a b, a + b = b + a).
-intros.
-rewrite 2![_ + _]plus_comm.
-split.
-Abort.
-End Foo.
-
-Goal (forall a b, a + b = b + a).
-intros.
-rewrite plus_comm, plus_comm.
-split.
-Abort. \ No newline at end of file