summaryrefslogtreecommitdiff
path: root/tests/with.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/with.ur')
-rw-r--r--tests/with.ur5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/with.ur b/tests/with.ur
new file mode 100644
index 0000000..458153b
--- /dev/null
+++ b/tests/with.ur
@@ -0,0 +1,5 @@
+val r = ({A = 1, B = 2} with #C = "Hi") with #D = "Bye"
+
+fun main () : transaction page = return <html><body>
+ {cdata r.C}, {cdata r.D}
+</body></html>