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

18 lines
238 B
Plaintext

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