view tests/subs_sig.ur @ 1516:c4f39b49aa2d

A few more tweaks to support Clang (including ending use of nested functions)
author Adam Chlipala <adam@chlipala.net>
date Sat, 23 Jul 2011 16:27:04 -0400
parents 71bafe66dbe1
children
line wrap: on
line source
signature S = sig
        type t
end

structure S : S = struct
        type t = int
end