view tests/sig_wild.ur @ 2287:08203f93dbc3

Remove debugging print statement.
author Ziv Scully <ziv@mit.edu>
date Fri, 13 Nov 2015 01:05:22 -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