summaryrefslogtreecommitdiff
path: root/test-suite/output/InitSyntax.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/InitSyntax.v')
-rw-r--r--test-suite/output/InitSyntax.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/test-suite/output/InitSyntax.v b/test-suite/output/InitSyntax.v
index 90fad371..eb39782e 100644
--- a/test-suite/output/InitSyntax.v
+++ b/test-suite/output/InitSyntax.v
@@ -1,4 +1,4 @@
(* Soumis par Pierre *)
-Print sig2.
-Check (EX x:nat|x=x).
-Check [b:bool]if b then b else b.
+Print sig2.
+Check (exists x : nat, x = x).
+Check (fun b : bool => if b then b else b).