leo/tests/pass/parse/array/slice.leo
2021-03-03 09:59:24 -08:00

7 lines
163 B
Plaintext

// `{from}..{to}` copies the elements of one array into another exclusively
function main(a: [u8; 3]) {
let b = [1u8; 4];
console.assert(a == b[0..3]);
}