view tests/sig_wild.ur @ 2022:1a4b2b983889

Change String to avoid Char dependency
author Adam Chlipala <adam@chlipala.net>
date Wed, 11 Jun 2014 08:31:14 -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