leo/compiler/tests/tuples/nested.leo
2020-08-10 19:40:49 -07:00

4 lines
69 B
Plaintext

function main() {
let a = (true, false);
let b = (true, a);
}