aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Cases.v
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2016-06-29 08:13:32 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2016-06-29 09:32:46 +0200
commitdd8d2a1d017d20635f943af205dcb0127a992a59 (patch)
tree39adf846ee4134c10f73947378d69fde85b0c5b9 /test-suite/output/Cases.v
parent8e07227c5853de78eaed4577eefe908fb84507c0 (diff)
Fix issues in test-suite revealed by warnings.
Diffstat (limited to 'test-suite/output/Cases.v')
-rw-r--r--test-suite/output/Cases.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/output/Cases.v b/test-suite/output/Cases.v
index a4d19d693..3c2eaf42c 100644
--- a/test-suite/output/Cases.v
+++ b/test-suite/output/Cases.v
@@ -66,8 +66,8 @@ Print foo'.
(* Was bug #3293 (eta-expansion at "match" printing time was failing because
of let-in's interpreted as being part of the expansion) *)
-Variable b : bool.
-Variable P : bool -> Prop.
+Axiom b : bool.
+Axiom P : bool -> Prop.
Inductive B : Prop := AC : P b -> B.
Definition f : B -> True.