annotate tests/nestedInput.ur @ 2262:34ad83d9b729

Fix recording bugs to do with nesting and buffer reallocation. Stop MonoFooify printing spurious errors.
author Ziv Scully <ziv@mit.edu>
date Wed, 07 Oct 2015 08:58:08 -0400
parents 9a1547596712
children
rev   line source
adam@2090 1 fun main () : transaction page =
adam@2090 2 let
adam@2090 3 fun handler _ = return <xml/>
adam@2090 4 in
adam@2090 5 return <xml><body>
adam@2090 6 <form>
adam@2090 7 <submit action={handler}>Uh oh!</submit>
adam@2090 8 </form>
adam@2090 9 </body></xml>
adam@2090 10 end