Dependent signature specialization

Viewed 58

Can I specialize a type in a signature using types before that type and in the signature? Here is an example:

signature A = sig 
  type t
  type s
end

Can I specialize A by the following?

signature B = A where type s = t list

Both SML/NJ and Mlton complain that t is unbound.

1 Answers
Related