diff options
| author | Matthieu Sozeau | 2015-11-05 17:12:39 -0500 |
|---|---|---|
| committer | Matthieu Sozeau | 2015-11-11 19:13:52 +0100 |
| commit | ca30a8be08beeae77d42b6cb5d9f219e3932a3f7 (patch) | |
| tree | 4997a8230cf8340b3ef1094f2a76f09606a66a02 /test-suite/bugs | |
| parent | 2f56f0fcf21902bb1317f1d6f7ba4b593d712646 (diff) | |
Fix bug #3257, setoid_reflexivity should fail if not completing the goal.
Diffstat (limited to 'test-suite/bugs')
| -rw-r--r-- | test-suite/bugs/closed/3257.v | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3257.v b/test-suite/bugs/closed/3257.v new file mode 100644 index 0000000000..d8aa6a0479 --- /dev/null +++ b/test-suite/bugs/closed/3257.v @@ -0,0 +1,5 @@ +Require Import Setoid Morphisms Basics. +Lemma foo A B (P : B -> Prop) : + pointwise_relation _ impl (fun z => A -> P z) P. +Proof. + Fail reflexivity. |
