/ tests / tests / compiler / tuple / return_with_different_modes.adl
return_with_different_modes.adl
1  
2  program test.alpha {
3      transition main(a: u8, b: u8) -> (public u8, u8) {
4          return (a + b, b + a);
5      }
6  }