blob: 5e174a2740e30115c7865062902f0986dc67c559 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
(* Distributed under the terms of CeCILL-B. *)
Require Import mathcomp.ssrtest.ssrsyntax1.
Require Import Arith.
Goal (forall a b, a + b = b + a).
intros.
rewrite plus_comm, plus_comm.
split.
Qed.
|