Import Debian changes 20180207-1
[hcoop/debian/mlton.git] / regression / typespec.sml
CommitLineData
7f918cf1
CE
1(* typespec.sml *)\r
2\r
3(* Checks scoping of definitional type specifications. *)\r
4\r
5type t = int\r
6\r
7signature S =\r
8sig\r
9 type t = bool\r
10 and u = t\r
11end\r
12\r
13structure X : S =\r
14struct\r
15 type t = bool\r
16 and u = bool\r
17end;\r