diff options
| author | Enrico Tassi | 2019-07-22 10:50:03 +0200 |
|---|---|---|
| committer | Enrico Tassi | 2019-07-22 10:50:03 +0200 |
| commit | 21b6ba98b0c0e33ceb106fd164def38d87ff3f0c (patch) | |
| tree | d3cf935a7a9ce79bfea4d3d3979e2f216a94d5eb /test-suite/bugs | |
| parent | 8ccafba4844c16ac4668bcb8475f3fb1d69c28ca (diff) | |
| parent | 35a4196e8527da12ac63fb361211d138de8f62af (diff) | |
Merge PR #10462: [Pretyping] Do not restrict a solved evar
Reviewed-by: gares
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. |
