summaryrefslogtreecommitdiff
path: root/tiger-compiler/tests/type/types-endless-recursion.tig
blob: ab51a9453c2df07d1d942605a99c87dc99be3374 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* error : mutually recursive types that do not pass through record or array */
let

type a=c
type b=a
type c=d
type d=a

in
 ""
end