aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test-suite/output/InitSyntax.out4
-rw-r--r--test-suite/output/InitSyntax.v2
2 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/output/InitSyntax.out b/test-suite/output/InitSyntax.out
index 45a83c771a..b219ff9d1f 100644
--- a/test-suite/output/InitSyntax.out
+++ b/test-suite/output/InitSyntax.out
@@ -1,2 +1,6 @@
Inductive sig2 [A : Set; P : A->Prop; Q : A->Prop] : Set :=
exist2 : (x:A)(P x)->(Q x)->(sig2 A P Q)
+(EX x:nat|x=x)
+ : Prop
+[b:bool](if b then b else b)
+ : bool->bool
diff --git a/test-suite/output/InitSyntax.v b/test-suite/output/InitSyntax.v
index 7b65743f1b..90fad3718f 100644
--- a/test-suite/output/InitSyntax.v
+++ b/test-suite/output/InitSyntax.v
@@ -1,2 +1,4 @@
(* Soumis par Pierre *)
Print sig2.
+Check (EX x:nat|x=x).
+Check [b:bool]if b then b else b.