Backport from sid to buster
[hcoop/debian/mlton.git] / regression / where.sml
CommitLineData
7f918cf1
CE
1(* where.sml *)
2
3(* Checks treatment of type realisations. *)
4
5signature S =
6sig
7 type t
8 type s = t
9end where type s = int;
10
11(* Due to Martin Elsman, also see SML/NJ bug 1330. *)
12signature T =
13 sig
14 type s
15 structure U :
16 sig
17 type 'a t
18 type u = (int * real) t
19 end where type 'a t = s
20 end where type U.u = int;