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

12 lines
183 B
Plaintext

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