aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Sozeau2015-01-13 06:43:53 +0530
committerMatthieu Sozeau2015-01-13 06:43:53 +0530
commit9993ac283e14c0f789b9fa826fd20086059cdcd8 (patch)
tree8f7e20bb75608867d725290f01c868810c17a7e8
parentcaff2e1f2358f7e006d6bb4ebf27b14b5f5f1719 (diff)
Fix test-suite file, we were testing that no anomaly was raised
and this is the case now.
-rw-r--r--test-suite/bugs/closed/3417.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/bugs/closed/3417.v b/test-suite/bugs/closed/3417.v
index 2931fbda52..9d7c6f013d 100644
--- a/test-suite/bugs/closed/3417.v
+++ b/test-suite/bugs/closed/3417.v
@@ -3,5 +3,5 @@ Require Setoid.
Goal forall {T}(a b : T), b=a -> {c | c=b}.
Proof.
intros T a b H.
-setoid_rewrite H.
+try setoid_rewrite H.
Abort.