leo/compiler/tests/function/array_params_direct_call.leo
2021-02-08 15:42:37 -05:00

9 lines
167 B
Plaintext

function do_nothing(arr: [u32; 2]) {}
function main() {
let arr: [u32; 2] = [0; 2];
do_nothing(arr);
do_nothing([...arr]);
do_nothing(arr[1u32..]);
}