view tests/subs_sig.ur @ 1593:7e2655b25ea1

Remove dummy entity
author Adam Chlipala <adam@chlipala.net>
date Sun, 06 Nov 2011 08:14:53 -0500
parents 71bafe66dbe1
children
line wrap: on
line source
signature S = sig
        type t
end

structure S : S = struct
        type t = int
end