view tests/sig_wild.ur @ 1922:5890ba37827c

Add -print-cinlude command line option
author Sergey Mironov <grrwlf@gmail.com>
date Wed, 06 Nov 2013 13:54:07 +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