leo/tests/compiler/integers/u8/mul.leo
2021-05-10 21:11:31 +03:00

18 lines
232 B
Plaintext

/*
namespace: Compile
expectation: Pass
inputs:
- mul.in: |
[main]
a: u8 = 10;
b: u8 = 20;
c: u8 = 30;
[registers]
r0: bool = true;
*/
function main(a: u8, b: u8, c: u8) -> bool {
return a * b == c;
}