view tests/whiteout.ur @ 1635:8938f7b31573

Fix C-side unurlification of unboxable Option datatypes
author Adam Chlipala <adam@chlipala.net>
date Sat, 17 Dec 2011 09:24:31 -0500
parents f0224c7f12bb
children
line wrap: on
line source
table t : { Chan : option (channel unit) }

fun main () : transaction page =
    ch <- channel;
    dml (INSERT INTO t (Chan) VALUES ({[Some ch]}));
    return <xml><body>Did it.</body></xml>