view tests/sig_wild.ur @ 2006:c3b03d099e04

Allow parens grouping joins in FROM clauses
author Adam Chlipala <adam@chlipala.net>
date Tue, 29 Apr 2014 16:47:45 -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