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