view tests/subs_sig.ur @ 959:53b9aeac676c

Fix C substring implementation
author Adam Chlipala <adamc@hcoop.net>
date Fri, 18 Sep 2009 19:30:09 -0400
parents 71bafe66dbe1
children
line wrap: on
line source
signature S = sig
        type t
end

structure S : S = struct
        type t = int
end