diff options
author | notin <notin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2007-12-12 12:27:48 +0000 |
---|---|---|
committer | notin <notin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2007-12-12 12:27:48 +0000 |
commit | f1306fd7d7ed91d9fb3e0eb8d12fa628783ec392 (patch) | |
tree | 172d454c79f4261f1b988f8c077fdf61e71358fd /test-suite/bugs | |
parent | 30243d55bd7f9ec5597f0db17f955eef0c7d5c67 (diff) |
Ajout d'un test pour le bug #1100
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10370 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/bugs')
-rw-r--r-- | test-suite/bugs/closed/shouldsucceed/1100.v | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/shouldsucceed/1100.v b/test-suite/bugs/closed/shouldsucceed/1100.v new file mode 100644 index 000000000..6d619c748 --- /dev/null +++ b/test-suite/bugs/closed/shouldsucceed/1100.v @@ -0,0 +1,12 @@ +Require Import Setoid. + +Parameter P : nat -> Prop. +Parameter Q : nat -> Prop. +Parameter PQ : forall n, P n <-> Q n. + +Lemma PQ2 : forall n, P n -> Q n. + intros. + rewrite PQ in H. + trivial. +Qed. + |