1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
_require "basis.smi"
structure Str1 = struct
val v1 : int
val f1 : int -> int
type t1 = int
type d1 (= contag)
type d2 (= boxed)
val v2 : d1
val f2 : int -> d2
exception Exn1
structure Str11 = struct
type t11 = t1
exception Exn11 = Exn1
end
structure Str12 = Str11
end
structure Str2 = struct
val v1 : int
val f1 : int -> int
type t1 = int
type d1 (= contag)
type d2 (= boxed)
val v2 : d1
val f2 : int -> d2
exception Exn1
structure Str11 = struct
type t11 = t1
exception Exn11 = Exn1
end
structure Str12 = Str11
end
structure Str3 = struct
val v1 : int
val f1 : int -> int
type t1 = int
type d1 (= contag)
type d2 (= boxed)
val v2 : d1
val f2 : int -> d2
exception Exn1
structure Str11 = struct
end
structure Str12 = struct
type t11 = t1
exception Exn11 = Exn1
end
end
|