leo/compiler/tests/function/array_params_direct_call.leo
2021-03-29 14:16:53 -07:00

9 lines
169 B
Plaintext

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