view tests/sig_wild.ur @ 1484:ae7547789c73

Fix flift.
author Karn Kallio <kkallio@eka>
date Sat, 02 Jul 2011 20:49:58 -0430
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