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