leo/compiler/tests/tuples/nested.leo

4 lines
73 B
Plaintext
Raw Normal View History

2020-08-11 05:40:49 +03:00
function main() {
const a = (true, false);
const b = (true, a);
2020-08-11 05:40:49 +03:00
}