From e46ce40cee2c34f47acb55d2b24bd09f00987556 Mon Sep 17 00:00:00 2001 From: xclerc Date: Fri, 20 Sep 2013 12:40:28 +0000 Subject: Get rid of "shouldsucceed" subdirectory by moving tests to parent directory. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16797 85f007b7-540e-0410-9357-904b9bb8a0f7 --- test-suite/bugs/closed/1939.v | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 test-suite/bugs/closed/1939.v (limited to 'test-suite/bugs/closed/1939.v') diff --git a/test-suite/bugs/closed/1939.v b/test-suite/bugs/closed/1939.v new file mode 100644 index 000000000..5e61529b4 --- /dev/null +++ b/test-suite/bugs/closed/1939.v @@ -0,0 +1,19 @@ +Require Import Setoid Program.Basics. + + Parameter P : nat -> Prop. + Parameter R : nat -> nat -> Prop. + + Add Parametric Morphism : P + with signature R ++> impl as PM1. + Admitted. + + Add Parametric Morphism : P + with signature R --> impl as PM2. + Admitted. + + Goal forall x y, R x y -> P y -> P x. + Proof. + intros x y H1 H2. + rewrite H1. + auto. + Qed. \ No newline at end of file -- cgit v1.2.3