leo/tests/compiler/address/ternary.leo

14 lines
380 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file:
- inputs/address1.in
- inputs/address2.in
*/
function main(x: address) -> bool {
const sender: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8s7pyjh9;
const receiver: address = aleo18qgam03qe483tdrcc3fkqwpp38ehff4a2xma6lu7hams6lfpgcpqy3sr3p;
return x == sender ? receiver == x : sender == x;
}