summaryrefslogtreecommitdiff
path: root/test-suite/complexity/setoid_rewrite.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/complexity/setoid_rewrite.v')
-rw-r--r--test-suite/complexity/setoid_rewrite.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/complexity/setoid_rewrite.v b/test-suite/complexity/setoid_rewrite.v
new file mode 100644
index 00000000..3b5a0de7
--- /dev/null
+++ b/test-suite/complexity/setoid_rewrite.v
@@ -0,0 +1,10 @@
+(* Check bug #1176 *)
+(* Expected time < 0.50s *)
+
+Require Import Setoid.
+
+Variable f : nat -> Prop.
+
+Goal forall U:Prop, f 100 <-> U.
+intros U.
+Time setoid_replace U with False.