Import Debian changes 20180207-1
[hcoop/debian/mlton.git] / regression / withtype.sml
CommitLineData
7f918cf1
CE
1(* withtype.sml *)
2
3(* Checks scoping rules of withtype *)
4
5type u = int
6
7datatype t = T of u * v
8withtype u = bool
9and v = u
10
11val x = T(true, 6);