summaryrefslogtreecommitdiff
path: root/tests/pb.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2014-08-06 09:50:02 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2014-08-06 09:50:02 -0400
commit48a13664ba3fe87143d6ec040a95c88e0891c57a (patch)
tree75fc2f6ed811ac4f8153c5e8b215835b912c4c1a /tests/pb.ur
parent5bdaff68aecc61680b464c2dd0bf9e6f24e3ae3c (diff)
MonoReduce bug involving 'error'
Diffstat (limited to 'tests/pb.ur')
-rw-r--r--tests/pb.ur7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/pb.ur b/tests/pb.ur
new file mode 100644
index 00000000..e6e5bd5c
--- /dev/null
+++ b/tests/pb.ur
@@ -0,0 +1,7 @@
+fun api_1 (pb:postBody) (nm:string) : transaction page =
+ return <xml>Processing the request</xml>
+
+fun api (pb:postBody) (v:int) (nm:string) : transaction page =
+ case v of
+ 1 => api_1 pb nm
+ | _ => error <xml>Version {[v]} is not supported</xml>