From 5fb2d53414158b2d6ca97f3d33bf38fbd938252d Mon Sep 17 00:00:00 2001 From: herbelin Date: Fri, 4 Apr 2008 17:10:45 +0000 Subject: Correction problème de compil (blast.ml) Correction bugs commentaires pour coqdoc (ChoiceFacts.v) Test-suite git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10756 85f007b7-540e-0410-9357-904b9bb8a0f7 --- test-suite/success/rewrite.v | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test-suite') diff --git a/test-suite/success/rewrite.v b/test-suite/success/rewrite.v index a11297ea90..86e55922df 100644 --- a/test-suite/success/rewrite.v +++ b/test-suite/success/rewrite.v @@ -29,3 +29,12 @@ Axiom e : forall (A : Set) (EA : A -> A -> Prop) (a : A), EA a a. Theorem th : forall x : N, E x x. intro x. try rewrite e. Abort. + +(* Behavior of rewrite wrt conversion *) + +Require Import Arith. + +Goal forall n, 0 + n = n -> True. +intros n H. +rewrite plus_0_l in H. +Abort. -- cgit v1.2.3