view tests/sig_wild.ur @ 716:a6941960f459

Update CHANGELOG
author Adam Chlipala <adamc@hcoop.net>
date Thu, 09 Apr 2009 15:58:36 -0400
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