mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 23:41:38 +03:00
15 lines
214 B
Plaintext
15 lines
214 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
*/
|
|
|
|
function do_nothing(arr: [u32; 2]) {}
|
|
|
|
function main() {
|
|
const arr: [u32; 2] = [0; 2];
|
|
|
|
do_nothing(arr);
|
|
do_nothing([...arr]);
|
|
do_nothing(arr[0u32..]);
|
|
}
|