leo/tests/parser/serialize/one_plus_one.leo
Pranav Gaddamadugu e1a148a93e Regen expectations
2022-10-05 23:52:37 -07:00

12 lines
129 B
Plaintext

/*
namespace: Serialize
expectation: Pass
*/
program test.aleo {
function main() -> u8 {
return 1u8 + 1u8;
}
}