view tests/subs_sig.ur @ 1536:cbacd38d4ec2

Remove commented-out code
author Adam Chlipala <adam@chlipala.net>
date Sun, 14 Aug 2011 09:31:53 -0400
parents 71bafe66dbe1
children
line wrap: on
line source
signature S = sig
        type t
end

structure S : S = struct
        type t = int
end