view tests/invurl.ur @ 1922:5890ba37827c

Add -print-cinlude command line option
author Sergey Mironov <grrwlf@gmail.com>
date Wed, 06 Nov 2013 13:54:07 +0400
parents 3621f486ce72
children
line wrap: on
line source
val r = { F = fn () => return <xml/> }

fun main () : transaction page = return <xml><body>
  <a link={r.F ()}>Go</a>
</body></xml>

fun main' (r' : {F : unit -> transaction page}) : transaction page = return <xml><body>
  <a link={r'.F ()}>Go</a>
</body></xml>