leo/tests/compiler/integers/u32/div.leo

18 lines
235 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
/*
namespace: Compile
expectation: Pass
inputs:
- u32.in: |
[main]
a: u32 = 4;
b: u32 = 2;
c: u32 = 2;
[registers]
r0: bool = true;
*/
function main(a: u32, b: u32, c: u32) -> bool {
return a / b == c;
}