mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 23:23:50 +03:00
12 lines
221 B
Plaintext
12 lines
221 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file:
|
|
- inputs/bool_bool.in
|
|
*/
|
|
|
|
function main(a: bool, b: bool) -> (bool, bool) {
|
|
let t: (bool, bool) = (a, b);
|
|
|
|
return (t.0, t.2); // Index `t.2` is out of bounds.
|
|
} |