summaryrefslogtreecommitdiff
path: root/test-suite/success/Decompose.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/success/Decompose.v')
-rw-r--r--test-suite/success/Decompose.v8
1 files changed, 5 insertions, 3 deletions
diff --git a/test-suite/success/Decompose.v b/test-suite/success/Decompose.v
index 21a3ab5d..1316cbf9 100644
--- a/test-suite/success/Decompose.v
+++ b/test-suite/success/Decompose.v
@@ -1,7 +1,9 @@
(* This was a Decompose bug reported by Randy Pollack (29 Mar 2000) *)
-Goal (O=O/\((x:nat)(x=x)->(x=x)/\((y:nat)y=y->y=y)))-> True.
-Intro H.
-Decompose [and] H. (* Was failing *)
+Goal
+0 = 0 /\ (forall x : nat, x = x -> x = x /\ (forall y : nat, y = y -> y = y)) ->
+True.
+intro H.
+decompose [and] H. (* Was failing *)
Abort.