diff options
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/3284.v | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3284.v b/test-suite/bugs/closed/3284.v index a942887ee9..34cd09c6f4 100644 --- a/test-suite/bugs/closed/3284.v +++ b/test-suite/bugs/closed/3284.v @@ -13,5 +13,11 @@ Proof. intros A B C f g x H. Fail apply @functional_extensionality_dep in H. Fail apply functional_extensionality_dep in H. + eapply functional_extensionality_dep in H. +Abort. + +Goal forall A B C (f g : forall (x : A) (y : B x), C x y), forall x:A, (forall x y, f x y = g x y) -> True. +Proof. + intros A B C f g x H. specialize (H x). apply functional_extensionality_dep in H. |
