aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test-suite/output/PrintInfos.out23
-rw-r--r--test-suite/output/PrintInfos.v6
2 files changed, 14 insertions, 15 deletions
diff --git a/test-suite/output/PrintInfos.out b/test-suite/output/PrintInfos.out
index d60c8097c4..f423f85136 100644
--- a/test-suite/output/PrintInfos.out
+++ b/test-suite/output/PrintInfos.out
@@ -1,17 +1,16 @@
-or_introl : forall A B : Prop, A -> A \/ B
+existT : forall (A : Type) (P : A -> Type) (x : A), P x -> sigT P
Argument A is implicit
-Argument scopes are [type_scope type_scope _]
-Expands to: Constructor Coq.Init.Logic.or_introl
-Inductive or (A B : Prop) : Prop :=
- or_introl : A -> A \/ B | or_intror : B -> A \/ B
-
-For or_introl: Argument A is implicit
-For or_intror: Argument B is implicit
-For or: Argument scopes are [type_scope type_scope]
-For or_introl: Argument scopes are [type_scope type_scope _]
-For or_intror: Argument scopes are [type_scope type_scope _]
-or_introl : forall A B : Prop, A -> A \/ B
+Argument scopes are [type_scope _ _ _]
+Expands to: Constructor Coq.Init.Specif.existT
+Inductive sigT (A : Type) (P : A -> Type) : Type :=
+ existT : forall x : A, P x -> sigT P
+
+For sigT: Argument A is implicit
+For existT: Argument A is implicit
+For sigT: Argument scopes are [type_scope type_scope]
+For existT: Argument scopes are [type_scope _ _ _]
+existT : forall (A : Type) (P : A -> Type) (x : A), P x -> sigT P
Argument A is implicit
Inductive eq (A : Type) (x : A) : A -> Prop := eq_refl : x = x
diff --git a/test-suite/output/PrintInfos.v b/test-suite/output/PrintInfos.v
index dd9f3c07ac..6a89f88098 100644
--- a/test-suite/output/PrintInfos.v
+++ b/test-suite/output/PrintInfos.v
@@ -1,6 +1,6 @@
-About or_introl.
-Print or_introl.
-Print Implicit or_introl.
+About existT.
+Print existT.
+Print Implicit existT.
Print eq_refl.
About eq_refl.