1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
signature S = sig type t val x : t end signature S' = sig include S val y : t end signature S'' = sig type u include S' where type t = int type v end