summaryrefslogtreecommitdiff
path: root/test-suite/success/Case11.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/success/Case11.v')
-rw-r--r--test-suite/success/Case11.v8
1 files changed, 5 insertions, 3 deletions
diff --git a/test-suite/success/Case11.v b/test-suite/success/Case11.v
index 580cd87d..fd5d139c 100644
--- a/test-suite/success/Case11.v
+++ b/test-suite/success/Case11.v
@@ -3,9 +3,11 @@
Section A.
-Variables Alpha:Set; Beta:Set.
+Variables (Alpha : Set) (Beta : Set).
-Definition nodep_prod_of_dep: (sigS Alpha [a:Alpha]Beta)-> Alpha*Beta:=
-[c] Cases c of (existS a b)=>(a,b) end.
+Definition nodep_prod_of_dep (c : sigS (fun a : Alpha => Beta)) :
+ Alpha * Beta := match c with
+ | existS a b => (a, b)
+ end.
End A.