leo/tests/compiler/integers/i16/gt.leo
2022-08-04 20:00:40 -07:00

13 lines
171 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file:
- inputs/eq.in
- inputs/gt.in
*/
@program
function main(a: i16, b: i16, c: bool) -> bool {
return a > b == c;
}