diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-05-02 13:23:07 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-05-02 13:23:07 -0400 |
commit | 3417bfbe670bd15796dd0fa8ca97209acfedfffb (patch) | |
tree | ff50f45f052221ffeee46c29630832c2d29d9161 /tests/rewrite.ur | |
parent | 471d5a79a82a673ca46d3a4e711f54ae1409c0f3 (diff) |
Path rewriting
Diffstat (limited to 'tests/rewrite.ur')
-rw-r--r-- | tests/rewrite.ur | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/rewrite.ur b/tests/rewrite.ur new file mode 100644 index 00000000..8b9f5bb8 --- /dev/null +++ b/tests/rewrite.ur @@ -0,0 +1,9 @@ +table t : { A : int } + +fun other () = return <xml><body> + Other +</body></xml> + +fun main () = return <xml><body> + <a link={other ()}>Hi!</a> +</body></xml> |