view tests/dtfunctor.ur @ 1756:f69174d0abc0

Fix manual's grammar for subquery FROM items
author Adam Chlipala <adam@chlipala.net>
date Mon, 07 May 2012 08:16:18 -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/>