summaryrefslogtreecommitdiff
path: root/test-suite/failure/Case11.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/failure/Case11.v')
-rw-r--r--test-suite/failure/Case11.v4
1 files changed, 3 insertions, 1 deletions
diff --git a/test-suite/failure/Case11.v b/test-suite/failure/Case11.v
index c39a76ca..e76d0609 100644
--- a/test-suite/failure/Case11.v
+++ b/test-suite/failure/Case11.v
@@ -1 +1,3 @@
-Type [x:nat]<nat> Cases x of ((S x) as b) => (S b x) end.
+Type (fun x : nat => match x return nat with
+ | S x as b => S b x
+ end).