diff options
Diffstat (limited to 'tests/pathcheck.ur')
-rw-r--r-- | tests/pathcheck.ur | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/pathcheck.ur b/tests/pathcheck.ur new file mode 100644 index 00000000..6d2359cd --- /dev/null +++ b/tests/pathcheck.ur @@ -0,0 +1,9 @@ +fun ancillary () : transaction page = return <xml/> + +fun ancillary () = return <xml> + Welcome to the ancillary page! +</xml> + +fun main () : transaction page = return <xml><body> + <a link={ancillary ()}>Enter the unknown!</a> +</body></xml> |