leo/asg/tests/pass/tuples/nested.leo

4 lines
73 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
function main() {
const a = (true, false);
const b = (true, a);
2021-01-25 18:17:42 +03:00
}