/* namespace: Compile expectation: Pass input_file: inputs/true_true.in */ function main(a: (bool, bool)) -> (bool, bool) { const a = (a.0 ? false : true, a.1 ? false : true); return (a.0, a.1); }