aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/InitSyntax.out
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/InitSyntax.out')
-rw-r--r--test-suite/output/InitSyntax.out12
1 files changed, 7 insertions, 5 deletions
diff --git a/test-suite/output/InitSyntax.out b/test-suite/output/InitSyntax.out
index 79ddf8c44..4ed72c506 100644
--- a/test-suite/output/InitSyntax.out
+++ b/test-suite/output/InitSyntax.out
@@ -1,8 +1,10 @@
-Inductive sig2 [A : Set; P : A ->Prop; Q : A ->Prop] : Set :=
- exist2 : (x:A)(P x) ->(Q x) ->(sig2 A P Q)
+Inductive sig2 (A : Set) (P : A -> Prop) (Q : A -> Prop) : Set :=
+ exist2 : forall x : A, P x -> Q x -> sig2 P Q
+For sig2: Argument A is implicit
+For exist2: Argument A is implicit
For sig2: Argument scopes are [type_scope type_scope type_scope]
For exist2: Argument scopes are [type_scope _ _ _ _ _]
-(EX x:nat|x=x)
+exists x : nat, x = x
: Prop
-[b:bool](if b then b else b)
- : bool ->bool
+fun b : bool => if b then b else b
+ : bool -> bool