annotate tests/csdebug.ur @ 1639:6c00d8af6239

Add a new scoping check for unification variables, to fix a type inference bug
author Adam Chlipala <adam@chlipala.net>
date Sun, 18 Dec 2011 11:29:13 -0500
parents bd34a4af516a
children
rev   line source
adam@1625 1 fun main () : transaction page =
adam@1625 2 n <- source 0;
adam@1625 3 return <xml><body>
adam@1625 4 <button onclick={n' <- get n; set n (n' + 1); debug ("Message: " ^ show n')}/>
adam@1625 5 </body></xml>