/ tests / tests / parser / structs / only_comma_separators_fail.adl
only_comma_separators_fail.adl
 1  program only_comma_separators.alpha {
 2      struct semicolons {
 3          x: u8;
 4          y: u8
 5      }
 6  
 7      struct semicolons_with_trailing {
 8          x: u8;
 9          y: u8;
10      }
11  
12      transition main(public a: u32) -> u32 {
13  		return a;
14      }
15  }