/ tests / tests / parser-statement / statement / conditional.adl
conditional.adl
 1  
 2  if x {
 3      return 0u8;
 4  }
 5  
 6  if (x) {
 7      return 0u8;
 8  }
 9  
10  if (x) {} else {}
11  
12  if x+y {} else if x+z {} else {}
13  
14  if x+y {
15      return 0u8;
16  }