leo/compiler/tests/function/array_params_direct_call.leo

9 lines
167 B
Plaintext
Raw Normal View History

2021-02-08 23:42:37 +03:00
function do_nothing(arr: [u32; 2]) {}
function main() {
let arr: [u32; 2] = [0; 2];
do_nothing(arr);
do_nothing([...arr]);
do_nothing(arr[1u32..]);
}