Import Debian changes 20180207-1
[hcoop/debian/mlton.git] / regression / dead.sml
CommitLineData
7f918cf1
CE
1datatype t = A of t
2
3fun f (A y) = f y
4
5fun g () = A (g ())
6
7val _ = f (g ())