Mercurial > urweb
view tests/rec3.ur @ 1454:96353138f016
Fix bug in projection of constructors from modules in class rules.
author | Karn Kallio <kkallio@eka> |
---|---|
date | Sun, 01 May 2011 00:26:08 -0430 |
parents | 71bafe66dbe1 |
children |
line wrap: on
line source
val rec main = fn () => <html><body> <a link={aux ()}>See another page</a> </body></html> and aux = fn () => <html><body> <h1>The Main Event</h1> {auxer ()} </body></html> and auxer = fn () => <body> <a link={main ()}>Back to square one</a> </body>