leo/tests/compiler/tuples/nested_access.leo
2021-04-19 18:08:14 -07:00

11 lines
194 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/true_true.in
*/
function main(a: (bool, bool)) -> (bool, bool) {
const b = (a, false);
return (b.1 || b.0.0, b.1 && b.0.1);
}