packages feed

alms-0.4.9: examples/ex51-signatures-type-error.alms

(* Signature tests -- should print type error *)

module A : sig
  type t qualifier A
end = struct
  type t = unit
  let f (x: t) = (x, x)
end

let f (x: A.t) = (x, x)