leo/tests/compiler/integers/i16/ne.leo

26 lines
362 B
Plaintext
Raw Normal View History

2021-05-10 20:19:19 +03:00
/*
namespace: Compile
expectation: Pass
inputs:
- i16_ne.in: |
[main]
a: i16 = 2;
b: i16 = 5;
c: bool = true;
[registers]
r0: bool = false;
- i16_e.in: |
[main]
a: i16 = 5;
b: i16 = 5;
c: bool = false;
[registers]
r0: bool = false;
*/
function main(a: i16, b: i16, c: bool) -> bool{
return a != b == c;
}