Import Upstream version 20180207
[hcoop/debian/mlton.git] / regression / 7.sml
CommitLineData
7f918cf1
CE
1fun h f = f 13
2
3fun f x = let fun z x = z(x + 1)
4 in h z
5 end
6
7val r : (int -> int) ref = ref f
8
9val _ = h(fn x => x)