view tests/sig_wild.ur @ 1615:7d459f223ac2

Switch to YUI strftime
author Adam Chlipala <adam@chlipala.net>
date Sat, 26 Nov 2011 10:14:05 -0500
parents 71bafe66dbe1
children
line wrap: on
line source
signature S = sig
        type t
        val x : t
end

structure M : S = struct
        type t = _
        val x = 0
end