view tests/dtfunctor.ur @ 2205:cdea39473c78

Forgets deleted files.
author Ziv Scully <ziv@mit.edu>
date Tue, 27 May 2014 21:15:53 -0400
parents 21ecf340f05c
children
line wrap: on
line source
functor Make(M : sig end) = struct
    datatype t = A | B
end

structure A = Make(struct end)
structure B = Make(struct end)

fun main (x : A.t) (y : B.t) : transaction page =
    return <xml/>