Import Upstream version 20180207
[hcoop/debian/mlton.git] / regression / fail / modules.23.sml
CommitLineData
7f918cf1
CE
1structure S:
2 sig
3 val f: 'a -> 'a list
4 end =
5 struct
6 fun f x =
7 if x = x
8 then []
9 else [x]
10 end