/ tests / tests / compiler / structs / cyclic_structs_three_fail.adl
cyclic_structs_three_fail.adl
 1  
 2  program test.alpha {
 3      struct One {
 4          two: Two,
 5      }
 6  
 7      struct Two {
 8          three: Three,
 9          four: Four,
10      }
11  
12      struct Three {
13          one: One,
14      }
15  
16      struct Four {
17          one: One,
18      }
19  }