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

18 lines
238 B
Plaintext

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