aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/ssrtest/ssrsyntax2.v
diff options
context:
space:
mode:
Diffstat (limited to 'mathcomp/ssrtest/ssrsyntax2.v')
-rw-r--r--mathcomp/ssrtest/ssrsyntax2.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/mathcomp/ssrtest/ssrsyntax2.v b/mathcomp/ssrtest/ssrsyntax2.v
new file mode 100644
index 0000000..29985b9
--- /dev/null
+++ b/mathcomp/ssrtest/ssrsyntax2.v
@@ -0,0 +1,10 @@
+(* (c) Copyright Microsoft Corporation and Inria. All rights reserved. *)
+Require Import ssrsyntax1.
+Require Import Arith.
+
+Goal (forall a b, a + b = b + a).
+intros.
+rewrite plus_comm, plus_comm.
+split.
+Qed.
+