diff options
Diffstat (limited to 'test-suite/bugs')
| -rw-r--r-- | test-suite/bugs/closed/bug_10300.v | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_10300.v b/test-suite/bugs/closed/bug_10300.v new file mode 100644 index 0000000000..374c2cf967 --- /dev/null +++ b/test-suite/bugs/closed/bug_10300.v @@ -0,0 +1,14 @@ +Set Implicit Arguments. + +Definition hprop := nat -> Prop. + +Definition himpl := fun H1 H2 : hprop => forall (h : nat), H1 h -> H2 h. + +Parameter himpl_refl : forall H : hprop, himpl H H. + +Parameter hstar : hprop -> hprop -> hprop. + +Parameter hpure : hprop. + +Lemma test : (forall (H:hprop), himpl (hstar H H) hpure -> True) -> True. +Proof. intros M. eapply M. apply himpl_refl. Abort. |
