diff options
| author | Matthieu Sozeau | 2014-06-20 16:03:52 +0200 |
|---|---|---|
| committer | Matthieu Sozeau | 2014-06-20 16:03:52 +0200 |
| commit | 6133a43c30e03656696a897bcedaf0cfb2cec70d (patch) | |
| tree | edda5b719763000d714a3eb097a15d6a8efccb64 /test-suite | |
| parent | 45bcb4c7ad7aad8c2c63287870666339fe2ac1f2 (diff) | |
Allow more relaxed conversion between the types of the two terms of a rewrite
equation, fix uncaught exception in setoid_rewrite (bug #3336).
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/3336.v (renamed from test-suite/bugs/opened/3336.v) | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test-suite/bugs/opened/3336.v b/test-suite/bugs/closed/3336.v index d469a13a34..dc358c6004 100644 --- a/test-suite/bugs/opened/3336.v +++ b/test-suite/bugs/closed/3336.v @@ -1,6 +1,9 @@ Require Import Setoid. + Goal forall x y : Type, x = y -> x = y. intros x y H. -Fail setoid_rewrite H. +setoid_rewrite H. +reflexivity. +Defined. (* Toplevel input, characters 0-16: Anomaly: Uncaught exception Reduction.NotConvertible(_). Please report. *) |
