aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/verifier/typedef_recursive.good
blob: 1a2585e645a8e3ecb07d09af38a03c59f38225a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

typedef A = (
    A^ next,
);

typedef B1 = (
    B2^ other,
);

typedef B2 = (
    B1^ other,
);