leo/tests/compiler/address/binary.leo
2022-08-04 20:00:40 -07:00

14 lines
278 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/address1.in
*/
@program
function main (x: address) -> bool {
let a: address = aleo1fj982yqchhy973kz7e9jk6er7t6qd6jm9anplnlprem507w6lv9spwvfxx;
let b: bool = x.eq(a);
let c: bool = x.neq(a);
return c;
}