leo/tests/compiler/integers/i8/eq.leo
2022-10-05 16:53:49 -07:00

12 lines
184 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/eq.in
*/
program test.aleo {
transition main(a: i8, b: i8, c: bool) -> bool {
return (a == b) == c;
}
}