Import Upstream version 20180207
[hcoop/debian/mlton.git] / regression / fail / sig.2.sml
CommitLineData
7f918cf1
CE
1signature S = sig type t end
2signature S1 = S where type t = int
3signature S2 = S where type t = real
4
5structure S1: S1 =
6 struct
7 type t = int
8 end
9
10structure S2: S2 = S1
11