aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/3537.v
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-09-12 14:51:14 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-09-12 14:57:31 +0200
commit2219309681e03b32d0490690374e7f9f6c92b2f4 (patch)
tree63f2597dfd751f087e2777fcac782a82f5a76083 /test-suite/bugs/closed/3537.v
parent8326639ef45b22cb066f65d17f27a77a678eb694 (diff)
An old typo which was preventing example #3537 to work the same as it
was working in 8.4.
Diffstat (limited to 'test-suite/bugs/closed/3537.v')
-rw-r--r--test-suite/bugs/closed/3537.v12
1 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3537.v b/test-suite/bugs/closed/3537.v
new file mode 100644
index 000000000..158642f01
--- /dev/null
+++ b/test-suite/bugs/closed/3537.v
@@ -0,0 +1,12 @@
+(* Another instance of bug #3262, on looping in unification *)
+
+Inductive bool := true | false.
+
+Inductive RBT2 : forall a:bool, Type :=
+ Full2 : forall (a b c n:bool),
+ forall H:RBT2 n, RBT2 n.
+
+Definition balance4 color p q r :=
+ match color, p, q, r with
+ | _,_,_,_ => Full2 color p q r
+ end.