diff options
| author | herbelin | 2003-01-16 21:12:39 +0000 |
|---|---|---|
| committer | herbelin | 2003-01-16 21:12:39 +0000 |
| commit | 0c52732d2b89604b9ba0f1b1b2643111bde47c0d (patch) | |
| tree | 627cb80a8e01dfabca490b6076178a70ff680edd | |
| parent | 8e861557feb58d6ee45b2c67c8191092fef9ec6a (diff) | |
*** empty log message ***
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3516 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | test-suite/output/InitSyntax.out | 4 | ||||
| -rw-r--r-- | test-suite/output/InitSyntax.v | 2 |
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. |
