leo/tests/compiler/integers/u8/sub.leo

18 lines
230 B
Plaintext
Raw Normal View History

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