/ tests / tests / compiler / structs / empty_struct_fail.adl
empty_struct_fail.adl
 1  
 2  program test.alpha {
 3      struct Bar {}
 4  
 5      struct Foo {
 6          a: [u8; 0],
 7      }
 8  
 9      function main(zz: bool) -> bool {
10          return true;
11      }
12  }