leo/tests/compiler/address/binary.leo

13 lines
269 B
Plaintext
Raw Normal View History

2022-06-16 23:07:40 +03:00
/*
namespace: Compile
expectation: Pass
input_file: inputs/address1.in
*/
function main (x: address) -> bool {
let a: address = aleo1fj982yqchhy973kz7e9jk6er7t6qd6jm9anplnlprem507w6lv9spwvfxx;
2022-06-16 23:22:32 +03:00
let b: bool = x.eq(a);
let c: bool = x.neq(a);
2022-06-16 23:07:40 +03:00
return c;
}