aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-09-06 13:52:04 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-09-07 13:48:47 +0200
commit2cb0a96a21a68b6535908252956351a3d2fe1d4b (patch)
tree1e051f8d12fccd860003d2c41aacb7d0b4fcb013 /test-suite
parentc6753a3223389050af4059d0222e4efd9bda3b0f (diff)
Regression test #3557
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/3557.v12
1 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3557.v b/test-suite/bugs/closed/3557.v
new file mode 100644
index 000000000..158642f01
--- /dev/null
+++ b/test-suite/bugs/closed/3557.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.