11 lines
133 B
Text
11 lines
133 B
Text
/* error: mutually recursive types thet do not pass through record or array */
|
|
let
|
|
|
|
type a=c
|
|
type b=a
|
|
type c=d
|
|
type d=a
|
|
|
|
in
|
|
""
|
|
end
|