summaryrefslogtreecommitdiff
path: root/test/struct_deps.lc
blob: 6db486a7ebd189f9901afba77fb81f673958205b (plain)
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

type A = struct {
    data B b
    data C c
}
type D = struct {
    int x
    data C c
}
type F = struct {
    int x
}
type H = int
type B = struct {
    ref A ap
    int x
}
type C = struct {
    data F f
    data G g
    data H h
    data I i
}
type E = struct {
    data A a
    data C c
}
type G = struct {
    int x
}
type I = int