Mercurial > urweb
view tests/pvar.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 | 5137b0537c92 |
children |
line wrap: on
line source
val v1 : variant [A = int, B = float] = make [#A] 1 val v2 : variant [A = int, B = float] = make [#B] 2.3 fun main () = return (match v1 {A = fn n => <xml>A: {[n]}</xml>, B = fn n => <xml>B: {[n]}</xml>})