Import Upstream version 20180207
[hcoop/debian/mlton.git] / regression / fail / modules.28.sml
CommitLineData
7f918cf1
CE
1structure S:
2 sig
3 datatype t = A | B of unit
4 end =
5 struct
6 datatype t = A | B of int
7
8 val rec B = fn () => A
9 end